jQuery 图像旋转器在更改第一个图像后停止

发布于 2024-11-24 22:48:56 字数 762 浏览 2 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

滥情空心 2024-12-01 22:48:56

像这样的东西应该可以解决问题:

$("#reel img").hide();
var counter = $("#reel img").length;

var i = setInterval(function() {
            $("#reel img").eq(counter - 1).show();
            $("#reel img:visible").fadeOut(2000);
            counter--;
            if (counter === 0) {
                counter = 5;
            }
        }, 2000);

蹩脚的演示: http://jsfiddle.net/tJvLy/

Something like this should do the trick:

$("#reel img").hide();
var counter = $("#reel img").length;

var i = setInterval(function() {
            $("#reel img").eq(counter - 1).show();
            $("#reel img:visible").fadeOut(2000);
            counter--;
            if (counter === 0) {
                counter = 5;
            }
        }, 2000);

Crappy demo: http://jsfiddle.net/tJvLy/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文