我正在尝试创建一个图像旋转器,其中一个图像将淡入下一个图像,依此类推,直到它循环回第一个图像。我让前两个图像正常工作,但其余 3 个没有正确褪色。他们只是跳入视野。
我知道我仍然需要考虑到轮换的结束。我还没有解决这个问题,因为我只是想让第一轮轮换工作。
为了让它正常工作,我缺少什么?
我的 HTML:
<div id="imageRotator">
<div id="image01" class="current">
<img src="images/imageRotate01.jpg">
</div>
<div id="image02" class="next">
<img src="images/imageRotate02.jpg">
</div>
<div id="image03" class="hidden">
<img src="images/imageRotate03.jpg">
</div>
<div id="image04" class="hidden">
<img src="images/imageRotate04.jpg">
</div>
<div id="image05" class="hidden">
<img src="images/imageRotate05.jpg">
</div>
</div>
我的 CSS:
#imageRotator div {
position: absolute;
}
.current {
z-index: 1;
}
.next {
z-index: 0;
}
.hidden {
z-index: -1;
}
我的 jQuery:
$(document).ready(function() {
var firstImage = $('#image01');
var currentImage, nextImage;
setInterval(rotateImages, 2000);
function rotateImages() {
currentImage = $('div.current');
nextImage = $('div.next');
//the first image fades away
currentImage.animate({opacity: 0}, 2000, function() {
currentImage.removeClass('current');
});
//bring the second image into view
nextImage.animate({opacity: 1}, 2000, function() {
//make the new image the current image
nextImage.removeClass('next').addClass('current');
//the next image in the rotation becomes the 'next' image
nextImage.next().addClass('next').removeClass('hidden');
});
}
});