Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当鼠标闲置一段时间后,我需要找到一种方法来随机水平和垂直滚动,在每个维度上加上或减去每秒设定的像素数。关于如何实现这一目标的任何想法?
提前致谢,
罗伯特
您可以添加一个 mousemove 事件侦听器,并且每次鼠标移动时,您都可以使用setTimeout启动一个计数器。计数器完成后,您可以放心地说鼠标没有移动。clearTimeout请注意,如果用户继续移动它(即使用),您将需要继续重置计数器
setTimeout
clearTimeout