Hey,
I have a question regarding jQuery and image fading. I have a bunch of images and I would like to fade each one sequentially to full opacity when you load the page. My html code is below:
<div class='mod'>
<img src='image-src' alt='' />
<div class='mod-text'>
<h2>Title</h2>
<p>Caption</p></div>
</div>
<div class='mod'>
<img src='image-src' alt='' />
<div class='mod-text'>
<h2>Title 2</h2>
<p>Caption 2</p></div>
</div>
Each image has its own corresponding Title and Caption which is displayed one below the other. I would like to have the first image fade in first, then have each following image fade in after. Anybody have an idea? I have a very basic understanding of jQuery. Thanks