为什么 requestAnimationFrame 函数接受元素作为参数?
我只是想理解为什么 window.requestAnimationFrame
接受第二个参数作为元素,这背后的原因是什么?
我很想知道这个函数的底层执行......
I am just trying to understand why the hell window.requestAnimationFrame
is accepting the second parameter as an element, what is the reason behind that?
I am curious to know the underlying execution for this function....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加它是为了当元素不在视图中时(例如由于滚动),动画不会运行。
来自规范:
有关此问题的更多信息可以此处找到。
It's added so that when an element is out of view (because of scrolling for example), the animation is not run.
From the specs:
More information about this issue can be found here.