css 中的嵌入字体是否会影响每次使用的性能?
我知道加载字体文件会带来性能开销,但问题是,下载后,我可以在 HTML 页面上随意使用它吗?或者每次使用时都会增加开销?
I know there is a performance overhead for loading the font file, but the question is, once it has been downloaded, can I use it freely any number of times on my HTML page? or does it add an overhead every time it is being used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这必须是字体性能和优化的完整指南:http://www.stevesouders.com/blog/2009/10/13/font-face-and-performance/
This has got to be the complete guide to font-face performance and optimisation: http://www.stevesouders.com/blog/2009/10/13/font-face-and-performance/
静态文件每页仅下载一次。您可以使用 firebug 或 chrome/safari 的 Web 检查器来监视 http 请求。如果页面下载文件两次,您将在那里看到它。
A static file will get downloaded only once per page. You can use firebug or chrome/safari's web inspectors to monitor the http requests. If the page is downloading the file twice, you will see it there.