How to rotate 4 images, fading between each one?
Posted
by
Darryl Hein
on Stack Overflow
See other posts from Stack Overflow
or by Darryl Hein
Published on 2009-01-16T05:36:04Z
Indexed on
2011/03/06
8:10 UTC
Read the original article
Hit count: 423
I have 4 images, which I want to fade between each other in a loop. I have something like the following:
<img src="/images/image-1.jpg" id="featureImg1" />
<img src="/images/image-2.jpg" id="featureImg2" style="display:none;" />
<img src="/images/image-3.jpg" id="featureImg3" style="display:none;" />
<img src="/images/image-4.jpg" id="featureImg4" style="display:none;" />
I am up for revisions to the HTML, although I cannot use absolute positioning in this case. I am using jQuery else where on the site, so it's available. I also need to deal with an image not being loaded right away as the images are larger.
© Stack Overflow or respective owner