如何在 HTML5 中获得毫秒级分辨率(或更好)的时间?
我正在制作 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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: