为什么 requestAnimationFrame 函数接受元素作为参数?

发布于 2024-12-05 07:41:10 字数 110 浏览 5 评论 0原文

我只是想理解为什么 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 技术交流群。

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

发布评论

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

评论(1

强辩 2024-12-12 07:41:10

添加它是为了当元素不在视图中时(例如由于滚动),动画不会运行。

来自规范

编者注

ISSUE-4 我们是否希望允许将元素传递给 requestAnimationFrame,以便在滚动到视图之外时限制或暂停影响给定元素的动画?

有关此问题的更多信息可以此处找到。

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:

Editorial note

ISSUE-4 Do we want to allow an Element to be passed to requestAnimationFrame, so that animations affecting the given element are throttled or paused when scrolled out of view?

More information about this issue can be found here.

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