Chrome 中的 Jquery 字体大小动画问题,太滞后

发布于 2024-12-04 22:36:34 字数 219 浏览 1 评论 0原文

我开发了一个小脚本,使用 Jquery 和 animate() 函数使文本看起来像是来自远方。在 IE 和 FireFox 中一切正常,但在 Chrome 上却非常滞后,就像丢帧一样。

您可以在此处测试和使用代码: http://jsbin.com/ehahoc/7/

非常感谢!

I developed a little script that make texts like they were coming from far, with Jquery and animate() function. Everything works well in IE and FireFox but on Chrome is very laggy, like it was loosing frames.

You cand test and play with the code here:
http://jsbin.com/ehahoc/7/

Many thanks!

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

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

发布评论

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

评论(1

玻璃人 2024-12-11 22:36:34

我检查了来源,发现了一些导致问题的原因......
火狐浏览器的字体大小和不透明度值为

0.0000(4位数字)

,在chrome中...

0.000000000000(12-14位数字)

,增加如下:

0.000000000011

0.000000000124

0.000000000180
……

不知道这是否有帮助或者是否会导致错误。

I check the source and i something that mite couse the problem...
Form firefox the font size and the opacity values are

0.0000 (4 digits)

and in chrome...

0.000000000000 (12-14 digits)

and the increased like :

0.000000000011

0.000000000124

0.000000000180
......

Don't know if this helps or if this makes it buggy.

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