作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有一个 speed test在 greensock 网站上与其他动画库、JQuery 甚至 CSS Transitions 比较速度。它通过为数百/数千个分体设置动画来对 FPS 进行基准测试。
greensock 动画的 FPS 超过了其他所有动画。 Css 转换和 JQuery 与 greensock 相差无几。
我尝试搜索有关 greensock 的信息,但找不到太多有用的信息。其中大部分都没有得到很好的解释。
我仍然是 JavaScript 的业余爱好者。如果我尝试制作自己的 JS 动画,它们将不会像 gsap 那样快。差远了。所以很高兴知道引擎盖下发生了什么。他们如何优化那么多!
最佳答案
Jack(GreenSock 的创建者)在 this forum post 中讲述了 GSAP 为何如此之快在其他地方。回顾一下那里的一些要点:
- Use highly optimized JavaScript across the board (this entails many things like using linked lists, local variables, quick lookup tables, inlining code, bitwise operators, leveraging prototypes instead of recreating functions/variables for each instance, etc.)
- Engineer the structure of the platform so that it lends itself very well to high-pressure situations, minimizing function calls and making sure things are gc-friendly.
- Make updates in a single update loop that's driven by requestAnimationFrame, only falling back to setTimeout() if necessary.
- Cache some important values internally for faster updates.
- For CSS transforms, we calculate matrix values and construct either a matrix() or matrix3d() when there's any rotation or skewing because our tests showed that it was faster.
没有使它变快的 Elixir 。它的聪明之处在于它基于十几年的经验来做事。
关于javascript - Greensock 动画是如何在其如此高效的引擎盖下工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56880686/
我对 hood 的文档有一些疑问,没有解释 config.json 中应该包含什么。我试过: { "development": { "driver": "postgres", "s
我是一名优秀的程序员,十分优秀!