jQuery 图像旋转器在更改第一个图像后停止
我的 jQuery 图像旋转器有一个小问题。 基本上,我的旋转器应该检查是否所有图像都已加载,如果是,则应在顶部 eq(5) 上显示第一个图像,然后在该图像之后显示一个图像。我的脚本适用于第一张图像,但我不知道如何让它循环遍历所有图像并重复自身。 基本上,我只想知道如何使我的旋转器无限循环地循环浏览所有图像。
HTML:
<div id="reel">
<img src="images/reel6.jpg" />
<img src="images/reel5.jpg" />
<img src="images/reel4.jpg" />
<img src="images/reel3.jpg" />
<img src="images/reel2.jpg" />
<img src="images/reel1.jpg" />
</div>
jQuery:
$(document).ready(function(){
$("#reel img").hide();
eq=5;
$("#reel img").load(function(){
function promeni(eq){
$("#reel img").eq(eq).show();
$("#reel img").eq(eq-1).show();
$("#reel img").eq(eq).delay(2000).fadeOut(2000);
}
promeni(eq);
});
});
I have a small problem with my jQuery image rotator.
Basically, my rotator should check if all images are loaded, and if they are it should display the first one on the top eq(5), and one after that one. My script works for the first image, but I don't know how make it cycle through all images and to repeat itself.
Basically, I just want to know how to make my rotator cycle through all images in a infinite loop.
HTML:
<div id="reel">
<img src="images/reel6.jpg" />
<img src="images/reel5.jpg" />
<img src="images/reel4.jpg" />
<img src="images/reel3.jpg" />
<img src="images/reel2.jpg" />
<img src="images/reel1.jpg" />
</div>
jQuery:
$(document).ready(function(){
$("#reel img").hide();
eq=5;
$("#reel img").load(function(){
function promeni(eq){
$("#reel img").eq(eq).show();
$("#reel img").eq(eq-1).show();
$("#reel img").eq(eq).delay(2000).fadeOut(2000);
}
promeni(eq);
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西应该可以解决问题:
蹩脚的演示: http://jsfiddle.net/tJvLy/
Something like this should do the trick:
Crappy demo: http://jsfiddle.net/tJvLy/