iPad 上的 Safari 渲染 CSS 渐变或图像的效率是否更高?

发布于 2024-12-06 13:57:15 字数 132 浏览 1 评论 0原文

我希望对我的网络应用程序中重复绘制的元素使用 CSS 渐变,因为它可以让我更灵活地动态更改其外观。然而,我的问题是浏览器渲染渐变是否比位图图像更昂贵。或者图像使用更多的处理能力? (而且我不关心跨浏览器兼容性 - 该应用程序只能在 iPad 上使用)

I'm looking to use CSS gradients for an element of my web app that is drawn repetitively, as it would allow me more flexibility in dynamically changing its appearance. However, my question is whether gradients are more expensive for the browser to render than bitmap images. Or do images use more processing power? (And I'm not concerned with cross-browser compatibility- the app will only be used on the iPad)

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

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

发布评论

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

评论(1

无言温柔 2024-12-13 13:57:15

根据 Webkit Wiki 上的一篇文章,图像表现更好:

有时,人们很想使用 webkit 的绘图功能,例如 -webkit-gradient,但实际上并没有必要 - 维护图像以及处理 Photoshop 和绘图工具可能会很麻烦。然而,使用 CSS 来完成这些任务会将麻烦从设计者的计算机转移到目标的 CPU 上。 CSS 中的渐变、阴影和其他装饰应仅在必要时使用(例如,当形状根据内容是动态的时) - 否则,静态图像总是更快。在非常低端的平台上,如果可能的话,甚至建议对某些文本使用静态图像。

来源: https://trac.webkit.org/wiki/QtWebKitGraphics#Usestaticimages

的当然,您必须平衡 CPU 时间与从服务器加载图像所需的额外时间。此外,对于 Internet Explorer,过滤器速度非常慢,尤其是在一页上有很多过滤器的情况下。

上述答案直接来自 在 CSS 中使用背景渐变与使用图像相比,性能如何?


这些链接对您很有用

浏览器重绘/回流性能:使用 CSS3 渐变与 PNG 渐变

CSS 渐变比 SVG 背景更快
http://leaverou.me/2011/08 /css-gradients-are-much-faster-than-svg/

CSS3 与图像的运行时性能
http://jacwright.com/476/runtime-performance-with -css3-vs-images/

According to an article on the Webkit Wiki, images perform better:

Sometimes it's tempting to use webkit's drawing features, like -webkit-gradient, when it's not actually necessary - maintaining images and dealing with Photoshop and drawing tools can be a hassle. However, using CSS for those tasks moves that hassle from the designer's computer to the target's CPU. Gradients, shadows, and other decorations in CSS should be used only when necessary (e.g. when the shape is dynamic based on the content) - otherwise, static images are always faster. On very low-end platforms, it's even advised to use static images for some of the text if possible.

Source: https://trac.webkit.org/wiki/QtWebKitGraphics#Usestaticimages

Of course, you have to balance that CPU time with the extra time it would take to load the image from the server. Also, for Internet Explorer, filters are extremely slow, especially if you have many on one page.

This above answer is directly lifted from How does the performance of using background-gradients in CSS vs using images?


These links can be useful read for you

Browser Repaint/Reflow performance: using CSS3 Gradients vs PNG Gradients

CSS gradients are faster than SVG backgrounds
http://leaverou.me/2011/08/css-gradients-are-much-faster-than-svg/

Runtime Performance with CSS3 vs Images
http://jacwright.com/476/runtime-performance-with-css3-vs-images/

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