3

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

有没有已知的工作?

@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;
}
4

2 回答 2

6

请注意,您使用的防弹防弹笑脸方法不适用于 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;

}
于 2012-01-13T11:50:55.363 回答
1

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

于 2012-03-29T12:37:34.690 回答