其他分享
首页 > 其他分享> > Android 2.3.4没有加载FontSquirrel字体?

Android 2.3.4没有加载FontSquirrel字体?

作者:互联网

我一直在使用Pictos和FontSquirrel在我们的网络应用程序上绘制花哨的图标和排版.今天我看到Droid手机和Android 2.3.4(在VirtualBox上运行)根本不显示字体.为了记录,谷歌自己的网络字体DO正确显示.

有一个已知的工作吗?

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

解决方法:

请注意,您使用的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;

}

标签:android,webfonts
来源: https://codeday.me/bug/20190729/1575101.html