加快移动 Safari 字体渲染速度?
我在 iPad 上的网页视图中渲染自定义字体。渲染工作正常并且字体按应有的方式显示。但是,渲染速度很慢。因此,除了字体之外,我页面上的所有内容都会快速加载。知道如何加快速度吗?
谢谢
i render customs fonts in a webview on the iPad. rendering works and the fonts get displayed as they should. but, the rendering is slow. so everything is on my pages loads up quickly, except for the font-face. any idea how i can speed up things?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用一些选项来优化字体规则。通过使用
data: url
,您可以通过以 base64 编码来使用内联字体。例如:还有一些其他有用的性能考虑因素和方法概述在这篇文章中,2009 年。
There are a few options you have to optimise your font-face rules. By using a
data: url
you can use the font inline by encoding in base64. For example:There are some other useful performance considerations and approaches outlined in this article from 2009.