预加载 @Font-Face 字体以阻止 Firefox 闪烁/延迟
有谁知道如何预加载字体来阻止闪烁/延迟?
Has anyone figured out how to preload the fonts to stop the flicker/delay?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有谁知道如何预加载字体来阻止闪烁/延迟?
Has anyone figured out how to preload the fonts to stop the flicker/delay?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
关于这个问题已经有很多讨论,Paul Irish 将其称为 FOUT(无样式文本闪现)。有很多方法可以限制这一点:
1 将 CSS 放在页面最顶部的任何脚本标签之前
2 最小化字体文件的大小
3 浏览器缓存在未来会过期标头
4 对 CSS 和字体文件进行 Gzip 压缩(WOFF 无法被压缩)
Paul Irish 有一篇关于此的很棒的文章:与@font-战斗face FOUT
Steve Souders 在他的高性能网站博客上也有一篇很棒的文章:@font-face 和性能
There has been a lot of discussion regarding this issue which Paul Irish calls FOUT (flash of unstyled text). There are numerous ways to limit this by
1 Putting CSS at the very top of the page before any script tags
2 Minimizing the size of the font file
3 Browser Caching with far future expires headers
4 Gziping your CSS and font file (WOFF can't be gzipped)
Paul Irish has a great article about this: Fighting the @font-face FOUT
Steve Souders also has a great article on his High Performance Websites blog: @font-face and performance
在 Firefox 中对抗 FOUT:
Firefox 在 window.load 事件之后开始重新渲染文本。
所以我所做的就是像 Paul Irish 一样隐藏内容,但是在 window.load 之后我仍然等待 200 毫秒(给 FF 时间进行真正的渲染),然后显示页面。
我的网站有很多图像,因此为了加快速度,我首先发送几乎没有内容的页面,然后通过 ajax 调用获取内容。
要让 FF 满意,需要做很多工作,但结果很好。
这是我的保罗爱尔兰变体,请注意,我使用负文本缩进而不是可见性来为访问者提供至少更快的布局:
Fighting the FOUT in Firefox :
Firefox starts re - rendering the text AFTER window.load event.
So what I did is hide the content like Paul Irish does, but AFTER window.load I still wait 200 millisec (to give FF time for the real rendering), and then show the page.
My site has a lot of images, so to speed this up, I first send the page allmost without content, and then get the content with an ajax call.
That's a lot of work to satisfie FF, but the results are good.
This is my paul irish variant, note I use negative text-indent in stead of visibility to serve the visitor at least the layout faster: