Android 2.3.4 未加载 FontSquirrel 字体?

发布于 2024-12-26 13:30:31 字数 387 浏览 1 评论 0原文

我一直在我们的网络应用程序上使用 Pictos 和 FontSquirrel 制作精美的舞蹈图标和版式。今天我看到 Droid 手机和 Android 2.3.4(在 VirtualBox 上运行)根本不显示字体。根据记录,Google 自己的网络字体确实可以正常显示。

有已知的解决方法吗?

@font-face {
    font-family: 'Pictos';
    src: url('pictos-web.eot');
    src: local('☺'), url('pictos-web.woff') format('woff'), url('pictos-web$
    font-weight: normal;
    font-style: normal;
}

I've been using Pictos and FontSquirrel for fancy dancy icons and typography on our web app. Today I saw that Droid phones and Android 2.3.4 (running on VirtualBox) does not display the font face at all. For the record, Google's own web fonts DO display properly.

Is there a known work around?

@font-face {
    font-family: 'Pictos';
    src: url('pictos-web.eot');
    src: local('☺'), url('pictos-web.woff') format('woff'), url('pictos-web$
    font-weight: normal;
    font-style: normal;
}

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

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

发布评论

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

评论(2

笔落惊风雨 2025-01-02 13:30:31

请注意 bulletproofbulletproof smiley 方法不适用于 Android 手机。

尝试 Fontspring 语法。

示例:

@font-face {
    font-family: 'Pictos';
    src: url('pictos-web.eot');
    src: url('pictos-web.eot?#iefix') format('embedded-opentype'),
         url('pictos-web.woff') format('woff'),
         url('pictos-web.ttf') format('truetype'),
         url('pictos-web.svg#UbuntuBold') format('svg');
    font-weight: normal;
    font-style: normal;

}

Be advised that the bulletproof and bulletproof smiley methods you're using do not work on Android phones.

Try the Fontspring syntax.

Example:

@font-face {
    font-family: 'Pictos';
    src: url('pictos-web.eot');
    src: url('pictos-web.eot?#iefix') format('embedded-opentype'),
         url('pictos-web.woff') format('woff'),
         url('pictos-web.ttf') format('truetype'),
         url('pictos-web.svg#UbuntuBold') format('svg');
    font-weight: normal;
    font-style: normal;

}
橘和柠 2025-01-02 13:30:31

如果消除笑脸语法不起作用... Android 上的某些浏览器会拒绝“仅限网络”字体。您可以在没有保护的情况下通过 fontsquirrel 生成器运行它们,并使用未受保护的 woff 文件。

If eliminating the smiley syntax doesn't work... some browsers on android are rejecting "web-only" fonts. You can run them through the fontsquirrel generator without protection and use the unprotected woff file.

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