如何检测无法从谷歌网络字体加载字体

发布于 2024-11-27 07:03:56 字数 292 浏览 0 评论 0原文

我正在加载谷歌网络字体来显示一些文本字符串。

我想做的是,如果在任何情况下谷歌网络字体无法加载(可能是超时或网络问题等),我想显示图像而不是落入字体系列堆栈。

那么有没有办法检测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 技术交流群。

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

发布评论

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

评论(1

寂寞美少年 2024-12-04 07:03:56

webfont 加载请求将在页面的 HTML 节点上生成类属性。使用 Google Webfont Loader(我假设 Google 类型服务使用它,以及Typekit),以下类将指示状态:

  1. wf-inactive(您正在寻找的那个)
  2. wf-loading
  3. wf-active

此外,您还将拥有特定于字体的类,例如 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:

  1. wf-inactive (the one you're looking for)
  2. wf-loading
  3. wf-active

In addition, you'll have font-specific classes, such as wf-myfont-active.

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