如何使用 javascript 判断浏览器是否支持网页字体?

发布于 2024-11-11 13:02:20 字数 116 浏览 3 评论 0原文

我只是想要一段代码来检查浏览器是否支持 CSS3 网络字体。
例如,我有一个 12px 的字体看起来太小,所以我必须将其设置为 16px,但如果使用不支持 webfonts 的浏览器查看页面,则文本看起来太大。

I just want a piece of code to check whether a browser supports CSS3 web-fonts or not.
for example I have a font which by the size of 12px looks too small so I have to set it on 16px but if the page is viewed with a browser without webfonts support the text looks too big.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

热情消退 2024-11-18 13:02:20

您可以使用 Modernizr 来实现此目的:@font-face 检测文档

You could use Modernizr for this: @font-face detection docs.

笑红尘 2024-11-18 13:02:20

Remy Sharp 的这篇文章给了我最大的成功。另外,您还可以使用 Comic Sans。
http: //remysharp.com/2008/07/08/how-to-detect-if-a-font-is-installed-only-using-javascript/

这里我们使用带有大字体的 Comic Sans 的基本思想size 作为您要检测的字体的后备。因为 CS 是一种很宽的字体,如果您检测到的字体没有安装,div 会比预期的更宽。

This article by Remy Sharp has given me the best success. Plus you get to use Comic Sans.
http://remysharp.com/2008/07/08/how-to-detect-if-a-font-is-installed-only-using-javascript/

The basic idea here us using Comic Sans with a huge font size as the fallback for the font you want to detect. Because CS is such a wide font, if the font you are detecting is not install, the div will be wider then expected.

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