当我在另一个标签上时间隔堆栈 - firefox

发布于 2024-11-30 09:58:41 字数 379 浏览 0 评论 0原文

感谢您的阅读。

在我的主页上,我制作了一个脚本,该脚本循环遍历列表,使列表项更改其类别。

事实是,在 Firefox 中,当我在另一个选项卡上运行一段时间时,动画开始堆叠。当我返回到包含主页的选项卡时,循环会以非常高的速度开始,并且直到所有堆叠的动画完成后才会恢复正常。

如何阻止这个? :S

编辑: 让我尝试解释一下.. 当列表项的类更改时,会出现一些淡入淡出的动画。每隔 9 秒,一些图形和文本就会淡入,而另一些则因此淡出。

因此,如果我在另一个 Firefox 选项卡上,例如在这里写字,然后我返回到我的站点选项卡,该动画就会开始变得疯狂,就像它们在等待我返回一样,并且它们每隔 0.1 秒发生一次,直到所有那些等待完成的,他们会恢复正常每 9 秒改变一次。

Thanks for reading.

On my homepage I've made an script that loops thru a list making list items to change their class.

Thing is, in Firefox, when I'm on another tab for some time, the animations starts stacking. And when I go back to the tab containing my home page, the loop starts at a really high speed and doesn't go back to normal until all the stacked animations finish.

How to stop this? :S

EDIT:
Let me try to explain a bit..
When the list item's class changes, there're some fading animations going on there. Every 9 seconds some graphics and text fadeIn and others fadeOut because of it.

So if I'm on another Firefox tab, writing here for example, and I go back to my Site's tab, this animations start going like crazy, like they were waiting for me to go back, and they happen like every 0.1seconds untill all the ones waiting finish and they go back to normally change every 9 seconds.

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

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

发布评论

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

评论(3

养猫人 2024-12-07 09:58:41

Firefox 从 5.0 开始引入了 setInterval 限制。我不知道这是否是您的问题的原因,请在动画代码中尝试使用 .stop()

$("selector").stop(true,true).animate(...)

Firefox introduced setInterval clamping as of 5.0. I don't know if this is the cause of your issue by in your animation code try using .stop():

$("selector").stop(true,true).animate(...)
_畞蕅 2024-12-07 09:58:41

您可能需要阅读第二个注释 http://api.jquery.com/animate/#笔记-0

You probably need to read the second note at http://api.jquery.com/animate/#notes-0

悟红尘 2024-12-07 09:58:41

使用 setTimeout 而不是 setInterval 怎么样? setInterval 会堆积起来,因为 setInterval 中的代码在每个时间间隔都会被调用。递归调用的 setTimeout 不会堆积,因为每个后续调用都需要前一个调用才能完成。

function do_timeout() {
    /*do your timeout code*/
    setTimeout(function () {do_timeout();}, 1000);
}
$(document).ready(function () {
    do_timeout();
});

How about using setTimeout rather than setInterval. setInterval will stack up because the code within the setInterval gets called every interval. setTimeout with a recursive call will not stack up because each subsequent call requires the previous to complete.

function do_timeout() {
    /*do your timeout code*/
    setTimeout(function () {do_timeout();}, 1000);
}
$(document).ready(function () {
    do_timeout();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文