最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is mousemove event fire once in per frame? - Stack Overflow

programmeradmin0浏览0评论

In this fiddle demo, press and move the mouse will draw the dot according to the mouse's position. The draw method is listen to mousemove callback, but it draw the discrete dot which show that the mousemove event is not fired continuously.

What is more, I collect the event.timeStamp and log in console. I found that the offset between adjacent event is near 16.7ms. So is mousemove event fire once in per frame?

In this fiddle demo, press and move the mouse will draw the dot according to the mouse's position. The draw method is listen to mousemove callback, but it draw the discrete dot which show that the mousemove event is not fired continuously.

What is more, I collect the event.timeStamp and log in console. I found that the offset between adjacent event is near 16.7ms. So is mousemove event fire once in per frame?

Share Improve this question edited May 18, 2020 at 17:41 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Jul 4, 2017 at 6:11 joe_fejoe_fe 531 silver badge4 bronze badges 1
  • Just to add a data point, I have exactly 60 mouse move events on a 60 Hz monitor on both Firefox and Chromium on Gnome on Arch Linux, which is really problematic if you want to do high quality painting in a browser. – Konrad Höffner Commented Sep 26, 2017 at 14:43
Add a ment  | 

1 Answer 1

Reset to default 9

The mousemove event frequency is implementation specific, and not defined by any specification.

A user agent MUST dispatch this event when a pointing device is moved while it is over an element. The frequency rate of events while the pointing device is moved is implementation-, device-, and platform-specific, but multiple consecutive mousemove events SHOULD be fired for sustained pointer-device movement, rather than a single event for each instance of mouse movement. Implementations are encouraged to determine the optimal frequency rate to balance responsiveness with performance.

-- UI Events, W3C Working Draft, 04 August 2016

It's entirely possible some browsers on some platforms will limit it to once per-frame. There is no guarantee any browser that may do this will continue to do so however.

If you want to draw a continuous line, you would need to create interpolation data between each two points.

发布评论

评论列表(0)

  1. 暂无评论