I have 3 divs stacked on top of each other that represent 3 thumbnail images. I want then to fade in when the page loads, but I want them to fade in sequentially, starting with the first image on the bottom, up to the top. I.E. the thumbnail following would have a delay so it would fade it one at a time.
I hope I explained myself correctly... here is my shabby code... Here is the CSS and HTML: #thumbs1 { float: left; height: 100px; width: 100px; padding-bottom: 20px; } #thumbs2 { float: left; height: 100px; width: 100px; padding-bottom: 20px; } #thumbs3 { float: left; height: 100px; width: 100px; padding-bottom: 20px; }
Keep in mind, that the thumbnail will have a different image abviously. Which is why I did it this way, again, obviously because I am brand new and don't know what I am doing.
I would LOVE to hear about the RIGHT way to do it. Really would love some guidance.