使用 SetInterval 和 JQuery 自定义动画问题设置超时时间

发布于 2024-12-05 22:44:39 字数 1142 浏览 1 评论 0原文

我遇到的问题是 IE 和 Safari(Mac OS X 而非 Windows 版本)在动画过程中图像闪烁,有时根本不执行动画。 Google、Firefox 和 Opera 加载后不会出现此问题。我认为每次重新下载图像都会导致闪烁。

这是测试站点: http://www.yeoworks.cz.cc/otherdomains/theoasis/< /a>

这是未压缩的 JQuery 代码:

$(document).ready(function(){
//LOGO ANIMATION
setInterval( function(){
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr1.png)');
}, 0);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr2.png)');
}, 200);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr3.png)');
}, 300);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr4.png)');
}, 400);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr5.png)');
}, 500);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr4.png)');
}, 600);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr3.png)');
}, 700);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr2.png)');
}, 800);
}, 900);
});

感谢您的帮助:)

The problem I'm having is that IE and Safari (Mac OS X not Windows Version) are flickering the images during animation and sometimes not doing the animation at all. Google, Firefox, and Opera don't this issue after load. I think it's redownloading the image each time to cause the flicker.

Here's the test site: http://www.yeoworks.cz.cc/otherdomains/theoasis/

Here's the uncompressed JQuery Code:

$(document).ready(function(){
//LOGO ANIMATION
setInterval( function(){
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr1.png)');
}, 0);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr2.png)');
}, 200);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr3.png)');
}, 300);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr4.png)');
}, 400);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr5.png)');
}, 500);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr4.png)');
}, 600);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr3.png)');
}, 700);
setTimeout(function(){
$('#logoani').css('background-image', 'url(ootr2.png)');
}, 800);
}, 900);
});

Thanks for helping :)

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

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

发布评论

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

评论(1

够钟 2024-12-12 22:44:39

如果动画 gif(即使是调色板压缩很少的动画)仍然无法解决问题,我会尝试另一种方法。对您来说,这可能带来的麻烦大于其价值;这个错误在 Safari 中不会发生在我身上,我真的认为你可以通过仔细压缩的动画 gif 来实现这一点,但尽管如此......

而不是每次都更改背景图像的 url,也许 IE 和如果页面上存在所有图像(绝对位于彼此之上),并且您分别调用了 .show().hide(),Safari 的性能会更好。

我会将所有这些图像(或包含 标签的 jQuery 对象)存储在一个数组中,并创建一个通过 setInterval 每 100 毫秒运行一次的函数。当它运行时,.show() 显示数组中的“下一张”图像,同时将当前可见的图像告诉 .hide()

这样,您可以确保在任何给定时刻始终都有可见的图像,并且没有闪烁。

If an animated gif (even one with very little palette compression) still doesn't do the trick, I would try a different approach. This may be more trouble than it's worth to you; the bug doesn't happen for me in Safari, and I really think you can get there with a carefully compressed animated gif, but nonetheless...

Instead of changing the url of the background-image each time, perhaps IE & Safari would perform better if all the images existed on the page (positioned absolutely on top of one another), and you called .show() and .hide() respectively.

I would store all these images (or jQuery objects containing <img> tags) in an array, and create a function that runs every 100ms via setInterval. When it runs, .show() the 'next' image in the array, while telling the currently visible one to .hide().

This way, you can make sure that there's always an image visible at any given moment, and there's no flicker.

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