Cycle Plugin not synchronous?

Cycle Plugin not synchronous?

Hi everybody!


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.


  1. $(document).ready(function() {
  2.     $('.slideshow').cycle({
  3. fx:  'fade',
  4. sync: true,
  5. speed:      1000,
  6. timeout:    4000 
  7. });
  8. });

  1. <div class="slideshow">
  2. <img src="http://cloud.github.com/downloads/malsup/cycle/beach1.jpg" width="200" height="200" />
  3. <img src="http://cloud.github.com/downloads/malsup/cycle/beach1.jpg" width="200" height="200" />
  4. <img src="http://cloud.github.com/downloads/malsup/cycle/beach1.jpg" width="200" height="200" />
  5. <img src="http://cloud.github.com/downloads/malsup/cycle/beach1.jpg" width="200" height="200" />
  6. <img src="http://cloud.github.com/downloads/malsup/cycle/beach1.jpg" width="200" height="200" />
  7. </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. 

Any ideas on a workaround?

Regards, John