如何在 HTML5 中获得毫秒级分辨率(或更好)的时间?

发布于 2024-11-07 15:42:25 字数 66 浏览 0 评论 0原文

我正在制作 HTML5 画布应用程序。对于动画,我需要高分辨率时钟时间。我怎样才能得到这个?至少应该是毫秒级的分辨率。

I'm making HTML5 canvas application. For animation, I need high resolution clock time. How can I get this? It should be millisecond level resolution at minimum.

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

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

发布评论

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

评论(1

雪化雨蝶 2024-11-14 15:42:25

AFAIK,这不是 HTML5 的一部分,而是 JavaScript 的一部分。而且您无法可靠地执行此操作,因为它取决于浏览器的实现。例如,在 IE(8 和 6)中,可以拥有的最小分辨率是 15毫秒

更新

抱歉 - 我刚刚注意到您询问如何实际获取时间,请使用 Date.getTime()。这将为您提供自 1970 年 1 月 1 日以来的以毫秒为单位的时间,但我上面的警告仍然有效 - 您将获得以毫秒为单位的值,但您无法确定准确性,因此您不应该在任何时间关键的情况下依赖于此。

参考文献:

AFAIK, this isn't part of HTML5 but JavaScript. And you can't do this reliably since it depends on the browser implementation. For example, in IE (8 and 6), the smallest resolution you can have is 15 milliseconds.

Update

Apologies - I just noticed you asked how to actually get the time, use Date.getTime(). This will give you the time in milliseconds since 1st Jan, 1970 but my caveat from above still stands - you'll get a value in milliseconds but you cannot be sure of the accuracy and so you shouldn't depend on this for anything time critical.

References:

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