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

时间:2011-04-12 08:37:07

标签: uiwebview rendering mobile-safari font-face performance

我在iPad上的webview中渲染海关字体。渲染工作和字体显示应该。但是,渲染速度很慢。因此除了font-face之外,我的页面上的所有内容都会快速加载。我知道如何加快速度吗?

感谢

1 个答案:

答案 0 :(得分:1)

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

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

从2009年起,还有一些其他有用的性能考虑因素和方法in this article