如何检测无法从谷歌网络字体加载字体
我正在加载谷歌网络字体来显示一些文本字符串。
我想做的是,如果在任何情况下谷歌网络字体无法加载(可能是超时或网络问题等),我想显示图像而不是落入字体系列堆栈。
那么有没有办法检测Google网页字体是否加载成功;这样我就可以实现类似的东西
if (Google webfont loads successfully) {
//display the string using that font
} else {
//display an image instead
}
I'm loading google web fonts to display some text strings.
What I want to do is, if in any case if Google web fonts fails to load (maybe a time out or network issue etc etc), I want to display an image instead of falling to the font family stack.
So is there a way to detect that Google web fonts has been successfully loaded or not; so that I can implement something like
if (Google webfont loads successfully) {
//display the string using that font
} else {
//display an image instead
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
webfont 加载请求将在页面的 HTML 节点上生成类属性。使用 Google Webfont Loader(我假设 Google 类型服务使用它,以及Typekit),以下类将指示状态:
此外,您还将拥有特定于字体的类,例如 wf-myfont-active。
The webfont load request will yield class attributes on the HTML node of your page. Using the Google Webfont Loader (which I'm assuming the Google type service uses, along with Typekit), the following classes will indicate status:
In addition, you'll have font-specific classes, such as wf-myfont-active.