JQuery :: Cycle Plugin - Malsup - IE Opacity - Fade In/out Content Gallery

Aug 23, 2010

I am using the jquery cycle plugin for a fade in/out content gallery for a site's news section - you can see it at: [URL] under the News & Articles section. The plugin works perfectly in Firefox, but I am seeing a white background in IE. Does anyone know how to fix this? It looks like it's an opacity issue. Here is my cycle code:

[Code]....

View 2 Replies


ADVERTISEMENT

JQuery :: Malsup Cycle Plugin Not Synchronous?

Aug 16, 2010

I am using the awesome malsup cycle plugin, but it seems like the sync: true option isn't working 100% synchronous. If I activate the sync option and let exactly the same images fade, a short opacity effect occurs.
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade',
sync: true,
speed: 1000,
timeout: 4000
});});
<div class="slideshow">
<img src="[URL]" width="200" height="200" />
<img src="[URL]" width="200" height="200" />
<img src="[URL]" width="200" height="200" />
<img src="[URL]" width="200" height="200" />
<img src="[URL]" width="200" height="200" />
</div>
I would like to fade some images with only few differences, and for the user it should look like only those few parts of the image change.

View 3 Replies View Related

JQuery :: Malsup Cycle Plugin Slide Timing

May 25, 2011

I need todo the following: (Fade imgs 1-17 then fadeZoom img 18 ) loop this

View 7 Replies View Related

JQuery :: Malsup Cycle Plugin - Getting The Captions To Display From A Slideshow

Jun 23, 2010

i'm having a small problem with getting the captions to display from a slideshow... i've got multiple slideshows on the page which i guess could be causing the problem... i'm not getting any errors, but no caption is being displayed... here is a section of my html....

<script>
$(document).ready(function() {
$('#cat_slide1').cycle({
fx: 'scrollHorz',
timeout: 0,
next: '#next1', prev: '#prev1',
[Code]...

View 3 Replies View Related

JQuery :: Malsup Cycle - Add Effect To The Lite Version Of The Plugin?

Mar 7, 2011

Using the minified jQuery Cycle Lite Plugin (only 3kb) is very very attractive for the project I'm working on. I'm trying to make cuts in load time and 99% of my site would only requires the fade transition, however one area needs the 'scrollUp' effect. How hard would it be to add that effect to the Lite version of the plugin?

View 2 Replies View Related

JQuery :: Malsup Cycle Plugin As Product Thumb Navigation

Jun 22, 2011

I have a Cycle Plugin carousel of 20 product thumbs split into 4 slides of 5 thumb images each slide. This scrolls horizontally forwards and backwards with left/right navigation. This carousel is situated below the products being displayed. The user can navigate forwards and backward through these 4 slides, however, when they pick a product to look at the carousel always resets itself back to the first slide. How can I set it so that when an image in one of the 4 slides is clicked and we move to that product's page, that slide stays active when the page loads? It's annoying to have to scroll back through the 4 slides to find the one that had the active product on it.

View 17 Replies View Related

JQuery :: Malsup Cycle Plugin: Pager Disappears When New Element Added

Feb 22, 2011

I have been running the cycle plugin with success for a while, using 3 images, a caption, and a pager area (simple dots). I just added a fourth image/caption. the pager picks up the fourth image, adding a dot. However, it now fades in on transition, then immediately out. no other code changed other than the addition of a fourth image. why this is now malfunctioning?

View 1 Replies View Related

JQuery :: Malsup Cycle Plugin: Pager Disappears In IE7/bold Text Does Odd Things

Feb 22, 2011

I have the cycle plugin running, works fine on all but IE7 (not catering to IE6). The pager elements on the right do not appear in IE7. I have tried adjusting the z-index, etc., but can't figure it out.

Also, the caption text transitions in with bolded elements properly appearing, and then they flip to regular text (the whole line of text transitions a bit strangely).

View 4 Replies View Related

JQuery :: Cycle Plugin: Pause The Cycle From Link Withing The Cycling Content?

Jul 21, 2009

I am having an issue with pausing the cycle from links within the cycle. I have set up a cycle that contains a html contentent including a 'video playlist'. This is a javascript based list that updates a flash video player with a new video inside the cycle. The videos are loading fine, but for some reason when i call the cycle 'pause', it dosent work? i have testing the $('#feature').cycle('pause'); from a link outside the cycle and that seems to be working, but it seems to be from the links inside the cycle content. here is the code i am using (i have made a custom crossfade transition)

function feature() {
$('#featuretitle').hide();
$('#feature').after(
'<div id="featurenav"></div>'

[Code]....

View 2 Replies View Related

JQuery :: Remove Numbers On Pager-navigation In Cycle Plugin Auto-pager By Malsup?

Jun 10, 2010

I have re-styled the tabs of the pager with css so its not orange anymore. Instead the active and the inactive tabs have a background image. What I need to do now is remove the numbers, but I do not know how to. Can someone please tell me how to do so?

View 8 Replies View Related

JQuery :: Creating Gallery With Transition Effects Using Cycle Plugin

May 28, 2011

I am new to jquery in anycase I have a db with information about the location of pictures, and I want to use that information to create a gallery with transition effects using the cycle plugin. Right now I can get the info that I need into the <img src=""/> using the code I have, the problem is it keeps giving empty values along with the actual values. To check what was happening I included a navigation bar for each picture and even though I should have 3 results in my query, I am getting 5 pages i.e. the extra ones are empty. I want to know if this problem is because of my php or something wrong I have done with the jquery.

The code I have is pretty simple.
<style type="text/css">
.slideshow { height: 210px; width: 210px; margin: auto }
.slideshow img { padding: 15px; border: 1px solid #ccc; background-color: #eee; }
#nav a { border: 1px solid #ccc; background: #fc0; text-decoration: none; margin: 0 5px; padding: 3px 5px; }
#nav a.activeSlide { background: #F90 }
#nav a:focus { outline: none; }

</style>
<script type="text/javascript" src="[URL]"></script>
<script type="text/javascript" src="[URL]"></script>
<script type="text/javascript">
$(document).ready(function() {

$('.slideshow')
.before('<div id="nav">')
.cycle({
fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
pause: 1,
timeout:0,
pager: '#nav'
});});
</script></head><body>
<? $q = mysql_query("SELECT picture FROM gallery") or die (mysql_error()); while($row = mysql_fetch_array($q)){?>
<div class="slideshow">
<img src="gallery/<?=$row['picture'] ?>" <? } ?> width='200' height='200' />
</div>

View 2 Replies View Related

Jquery :: Malsup Progressbar For Cycle Plugin - Get The Progressbar To Reset If The User Clicks Next / Previous Slide

Oct 16, 2010

malsup has kindly created this progressbar but hasn't explained how to implement it into his cycle plugin. [URL] I am trying to get the progressbar to reset if the user clicks next/previous slide. what I am using:

[Code]....

View 2 Replies View Related

JQuery :: Cycle Plugin : Adding A Fade-in To The Horizontal Scroll Transition?

Feb 10, 2011

I'm trying to add a fade-in and fade-out effect to the default scrollHorz transition.The code I'm currently using is as follows :

$('.Gallery').cycle({
speed: 1000,
timeout: 3500,

[code]....

View 2 Replies View Related

JQuery :: Cycle Plugin - Make The Images Transition Fade Smoothly Into The Next Image

Oct 5, 2010

Love the Cycle plugin.

- works as expected in that one photo fades into the next photo smoothly. Test page looks great - [url]

However, when I put the exact same code into Thesis/WordPress, I get a long delay between the images, and spend several seconds looking at a blank stage - [url]

Why would that be? How to make the images transition fade smoothly into the next image

View 2 Replies View Related

JQuery :: #jqueryCyclePlugin (Malsup): Cycle Works But After Cycle The Call Shows Up

Nov 11, 2010

I am working with MODx CMS. Following website: Carlindesign I integrated the cycle plugin on the home. It works but after the cycle is done the cycle call shows up instead of the next cycle.

View 2 Replies View Related

JQuery :: Animation - Fade Plugin Onto A Page To Automatically Cycle Through Images In An Unordered List Without A Click Event

Feb 18, 2011

I have just added a jQuery fade plugin onto a page to automatically cycle through images in an unordered list without a click event. It works well but when I preview the page with JS disabled all images become visible and it messes up the layout. What I need is a method that works when JS is disabled. I have seen methods where the {display:none} CSS styles are applied then changed via JS but can't figure this out. If anyone can either recommend a decent plugin with provisions for JS disabled browsers

View 2 Replies View Related

JQuery :: Cycle Plugin Is Displayed Above Content?

Apr 15, 2010

On page load, the cycle is displayed above some content that should be below the cycle.

And after doing a page reload, the content is indeed pushed down and the display is then correct, with the cycle above said content.

I suppose it is due to a loading race condition, the images being loaded before or after the below content...?

View 5 Replies View Related

JQuery :: Plugin - Cycle The Background Image And Content

Apr 14, 2011

I have a few "panels" that I am looking to cycle. The panel has a width of 100% with a background image. It is supposed to span the whole width of the browser. the content is set at a specific width, centered in this panel. I am looking to cycle the background image and content but just can't get it to work (the panels have a set width and are pinned to the left, not centered.

simple js:

View 1 Replies View Related

JQuery :: Cycle Plugin - Remove The 'content' (ie Numbers) From Pager?

Sep 28, 2010

I need to try to get rid of the number (idx) that sits in the pager box. Ultimately I want to see all pager 'holders' as empty4px square boxes.

View 7 Replies View Related

JQuery :: Cycle Plugin Different Pager Text Relating To Content?

Aug 18, 2011

I'm building a jQuery cycle slideshow into a Wordpress post. The slideshow will cycle through images attached to the post, and the final slide will always be a text box (generated by a meta box).

I'm trying to build a Pager that would display numbers (as per default), but for the last slide, the pager button would simply be "Text".

e.g.

1 2 3 4 5 Text

I have explored PagerAnchorBuilder but am still struggling.

View 4 Replies View Related

JQuery :: Fade In Fade Out Hover Effect In Gallery?

Dec 19, 2011

I have a gallery style page with rectangular images on laid out like a grid of nine. When the user looks at the page there is just the images and no information, but when they hover over the image I would like some text and a bar underneath to show up over the top so the user can read some information.my images sit in "a" tags. There is also a div tag in there which has it's z-index and position (absolute) set up so that it sits over the top of the image element in the "a" tag. stripped down e.g.

<a href="#"><img.... /><div>the info</div></a>

I need the div tag withinin the "a" tag to be set to 0 opacity. When the user hovers over the image the div tag slowly fades in to 100% opacity. Once the user moves the mouse away from the image the div tag slowly disappears again.I need each one to work independently so that it only changes the one currently being hovered over.

View 1 Replies View Related

JQuery :: Get Rid Of "fade" In Cycle Plugin?

Jan 13, 2012

Below a simplecoe for a slideshow using JQuery Cycle Plugin. Is there a way to get rid of the fade effect, so that one image is replaced immediately by the nextwithout fading? Is there a code I could write for thisinstead of

[Code]...

View 2 Replies View Related

JQuery :: Cycle Plugin - Cycle Through Php Query_post & Display Caption From The_excerpt - Captions Do Not Effectively Cycle

Jun 23, 2011

I have yet to be able to do this successfully. I am using the Cycle Plugin to cycle through a series of images and corresponding caption. To show the images, I use:

<div id="cycle-container">
<?php query_posts("cat=38&showposts=2"); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
<img src="http://www.website.com/uploads/<?php echo get_post_meta($post->ID, 'Image', true); ?>" alt="Icon [Code]...

Problem: The captions do not effectively cycle. What appears is the first caption from php the_excerpt but it does not change to the next php the_excerpt text. Can I solve this problem so I get the text from php the_excerpt to correspond to each image??

View 1 Replies View Related

JQuery :: Malsup Cycle Won't Work

Mar 31, 2011

downloaded and installed the cycle .jquery.cycle.all.2.74.js and jquery.cycle.min.js and set up the code like on the example:

<head>
<style type="text/css">
.slideshow { margin: 0px 50px 0px 0px;
width: 713px;
height: 478px;
position: relative;
[Code]...

I also found it worked better if I put the class styles in the head and not on a separate CSS file. Any thoughts to what's wrong?

View 1 Replies View Related

JQuery :: Cycle Malsup Not Working In Firefox 4

May 17, 2011

I've had a look at some pages that contains the Malsup's Cycle slideshow plugin with FIREFOX 4, any is working.

View 3 Replies View Related

JQuery :: Malsup Cycle Restarts - Doesn't Work?

Sep 21, 2010

I'm trying to do a goto thing with the cycle plugin. I've succeeded with the same thing before. The only thing that happens now is that it goes to the first index/restarts.

$('#id').cycle(n); always gets me the first slide. I've checked that the n value is a number/integer. The only thing I can come up with is some kind of conflict.I'm also using jcarousel but when I deactivate that it's the same problem.

Does anybody have clue about what might be going on? Or maybe how to troubleshoot?

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved