CSS 改变性能

发布于 2024-12-09 17:53:26 字数 264 浏览 0 评论 0原文

我想知道-webkit-transform:translate(5px, 5px)-webkit-transform:translateX(5px)translateY(5px)

有什么区别有性能差异吗?因为 translateX 也用于 3D 变换。所以我的问题是:计算变换有什么区别吗?我可以说 translateX 更快,因为它使用 GPU 吗?是吗?

我如何衡量性能?

I wondered what the difference between -webkit-transform: translate(5px, 5px) and -webkit-transform: translateX(5px) translateY(5px)

Is there any performance difference? Because translateX is also used for 3D transforms. So my question is: Is there any difference in calculating the transform? Can I say that translateX is faster, because it uses the GPU? Does it?

How can I meassure the performance?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

怪我太投入 2024-12-16 17:53:26

不,但是 -webkit-transform:translate3d(5px, 5px, 0) 会更快。您输入的两种语法是相同的,我的使用 3d 上下文。

No, but -webkit-transform: translate3d(5px, 5px, 0) will be quicker. The two syntaxes you've put are the same, mine uses the 3d context.

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