jquery如何每5秒触发相同的事件

发布于 2024-09-15 19:25:07 字数 1173 浏览 5 评论 0原文

我构建了一个带有左右滚动的简单轮播。现在我想每 5 秒自动滚动一次。这是我的代码:

function carousel(){
        $j('#carousel_ul li:first').before($j('#carousel_ul li:last'));

        $j('#right_scroll img').click(function(){

            var item_width = $j('#carousel_ul li').outerWidth() + 10;

            var left_indent = parseInt($j('#carousel_ul').css('left')) - item_width;

            $j('#carousel_ul:not(:animated)').animate({'left' : left_indent},800, 'easeOutExpo',function(){

                $j('#carousel_ul li:last').after($j('#carousel_ul li:first'));

                $j('#carousel_ul').css({'left' : '-750px'});
            });
        });

        $j('#left_scroll img').click(function(){

            var item_width = $j('#carousel_ul li').outerWidth() + 10;

            var left_indent = parseInt($j('#carousel_ul').css('left')) + item_width;

            $j('#carousel_ul:not(:animated)').animate({'left' : left_indent},800, 'easeOutExpo',function(){

            $j('#carousel_ul li:first').before($j('#carousel_ul li:last'));

            $j('#carousel_ul').css({'left' : '-750px'});
            });

        });
}

我如何实现这一目标? 提前致谢:)

毛罗

I've built a simple carousel with left and right scroll. Now I want to scroll automatically every 5 seconds. Here's my code:

function carousel(){
        $j('#carousel_ul li:first').before($j('#carousel_ul li:last'));

        $j('#right_scroll img').click(function(){

            var item_width = $j('#carousel_ul li').outerWidth() + 10;

            var left_indent = parseInt($j('#carousel_ul').css('left')) - item_width;

            $j('#carousel_ul:not(:animated)').animate({'left' : left_indent},800, 'easeOutExpo',function(){

                $j('#carousel_ul li:last').after($j('#carousel_ul li:first'));

                $j('#carousel_ul').css({'left' : '-750px'});
            });
        });

        $j('#left_scroll img').click(function(){

            var item_width = $j('#carousel_ul li').outerWidth() + 10;

            var left_indent = parseInt($j('#carousel_ul').css('left')) + item_width;

            $j('#carousel_ul:not(:animated)').animate({'left' : left_indent},800, 'easeOutExpo',function(){

            $j('#carousel_ul li:first').before($j('#carousel_ul li:last'));

            $j('#carousel_ul').css({'left' : '-750px'});
            });

        });
}

How do I achieve that?
Thanks in advance :)

Mauro

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

ぇ气 2024-09-22 19:25:07

您可以使用setInterval。看:

window.setInterval(event, 5000);

函数事件将是

function event() {
 $j("#right_scroll img").click();
}

编辑:

谢谢@cris! setTimeout 仅调用一次。我改成setInterval了。

谢谢@bears!现在我将一个函数传递给 setInterval。

You can use setInterval. Look:

window.setInterval(event, 5000);

And function event would be

function event() {
 $j("#right_scroll img").click();
}

EDIT:

Tks @cris! setTimeout calls only one time. I changed to setInterval.

Tks @bears! Now I pass a function to setInterval.

苹果你个爱泡泡 2024-09-22 19:25:07
var i = setInterval(carousel, 5000)

并稍后停止它:

clearInterval(i);
var i = setInterval(carousel, 5000)

And to stop it later:

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