I'm trying to make an image fader that cycles through a number of images (3 here). I made this function to loop and fade in the proper image and it works, fading out one image while fading in the next so that there is no empty space. Except for when it reaches the end of the array the function, it fades the last image in the array out before looping back and fading the first in again, creating an second of empty space.
Javscript
<script type="text/javascript">
var img_arr = [
'#img1',
'#img2',
'#img3'
]
var i = 0;
arr_length = img_arr.length;
//fade function
function fade_gal() {
$(img_arr[i])
.animate(
{opacity: '1.0' }, 500
);
$('.img').delay(3000).animate({opacity: 0.0}, 500);
i = i + 1;
if (i == arr_length) {
i = 0;
}
}
$(document).ready(function img_gallery() {
//initial function
fade_gal();
//set funtion interval
setInterval( function() {fade_gal()}, 3500);
})
</script>
html
<div id="scroller">
<img src="../../images/1.jpg" alt="img1" width="300px" id="img1" class="img"/>
<img src="../../images/2.jpg" alt="img1" width="300px" id="img2" class="img"/>
<img src="../../images/3.jpg" alt="img1" width="300px" id="img3" class="img"/>
</div>