Cycle Lite stops after 2 images
photo1.gif fades in as expected, then fades to photo2.gif, but then nothing else happens.
- $(function() {
$('#slideshow img:first').fadeIn(1000, function() {
$('#slideshow').cycle();
});
});
- <div id="slideshow">
<img src="photo1.gif" class="first" />
<img src="photo2.gif" />
<img src="photo3.gif" />
</div>