canvas中动画的速度取决于js引擎的速度,有没有办法让动画在所有浏览器中显示相同?

发布于 2024-11-07 12:04:50 字数 300 浏览 0 评论 0原文

这是画布动画的链接 http://www.html5canvastutorials.com/advanced/html5-canvas- Linear-motion-animation/

现在就像普通的 js 动画一样,它的速度取决于浏览器使用 js 的速度。 所以我的问题是,canvas 是否有办法使它们达到同一水平?或者已经有解决方案了吗?

this is a link to a canvas animation
http://www.html5canvastutorials.com/advanced/html5-canvas-linear-motion-animation/

now just like with a regular js animation, the speed of it depends on how fast the browser is with js.
so my question is, does canvas have a way of bringing them all to the same level? or is there already a solution for this?

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

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

发布评论

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

评论(2

淤浪 2024-11-14 12:04:50

问题是,在 Javascript 中,setInterval() 无法为您提供可靠的计时,特别是当浏览器速度太慢而无法在规定的时间内更新帧时。

因此,对于每一帧,您必须计算自上一帧以来经过的时间,并使用它来更新您的位置。

这是一个实例:

http://jsfiddle.net/txWqJ/1/

The problem is that, in Javascript, setInterval() does not give you reliable timing, especially if the browser is too slow to update a frame in the time alotted.

So for each frame you have to calculate time elapsed since the previous frame, and use that to update your position.

Here is a live example:

http://jsfiddle.net/txWqJ/1/

云胡 2024-11-14 12:04:50

如果您希望画布以相同的速度渲染,请使用

setTimeout(doMoreRendering, 1000 / fps)

If you want the canvas to render at the same speed use

setTimeout(doMoreRendering, 1000 / fps)

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