如何让 jQuery 效果无限工作?

发布于 2025-01-01 11:01:08 字数 133 浏览 0 评论 0原文

我怎样才能使 jQuery 中的效果无限工作并且不会停止,因为当我现在运行它时,它只工作几秒钟(3 秒)&之后停止。

前任:

$('div').effect('Slide');

how can I make the effect in jQuery works for infinite and won't stop, Since when I run it right now, it works only for a couple of seconds(3 sec) & stop after that.

ex:

$('div').effect('Slide');

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

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

发布评论

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

评论(2

爱你是孤单的心事 2025-01-08 11:01:08
(function looper(){
  // use callback function of the effect to call the outer looper function recursively.
  $('div').effect('Slide', function(){
    setTimeout(looper, 25); // add a timeout of needed
  });
})();
(function looper(){
  // use callback function of the effect to call the outer looper function recursively.
  $('div').effect('Slide', function(){
    setTimeout(looper, 25); // add a timeout of needed
  });
})();
我早已燃尽 2025-01-08 11:01:08
setInterval(function(){$('div').effect('slide')}, 1000);
setInterval(function(){$('div').effect('slide')}, 1000);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文