加快移动 Safari 字体渲染速度?

发布于 2024-10-31 21:18:22 字数 106 浏览 0 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

等待圉鍢 2024-11-07 21:18:22

您可以使用一些选项来优化字体规则。通过使用 data: url,您可以通过以 base64 编码来使用内联字体。例如:

@font-face {
    font-family: "My Font";
    src: url("data:font/opentype;base64,[base-encoded font here]");
}

还有一些其他有用的性能考虑因素和方法概述在这篇文章中,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:

@font-face {
    font-family: "My Font";
    src: url("data:font/opentype;base64,[base-encoded font here]");
}

There are some other useful performance considerations and approaches outlined in this article from 2009.

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