SVG font-face无法在Android上运行

时间:2014-02-11 09:50:10

标签: android css svg font-face zurb-foundation

从Google字体下载了一个字体,用fontsquirrel.com的工具转换它,添加了以下css:

@font-face {
    font-family: 'kaushan_scriptregular';
    src: url('kaushanscript-regular-webfont.eot');
    src: url('kaushanscript-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('kaushanscript-regular-webfont.woff') format('woff'),
         url('kaushanscript-regular-webfont.ttf') format('truetype'),
         url('kaushanscript-regular-webfont.svg#kaushan_scriptregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

除了标准浏览器上的Android智能手机外,该字体适用于所有浏览器和设备。如果我使用Chrome for Android,那么字体效果很好。我必须提到我正在使用Foundation5,并且我已经在所有CSS中替换了font-family!

请注意如果文件不在正确的文件夹中,或者CSS @ font-face出错,那么它首先在计算机上无效。 请注意,我已经在其他项目中使用其他字体尝试了这一点,并且它在Android智能手机上运行良好。

任何人都知道问题可能是什么?提前谢谢!

1 个答案:

答案 0 :(得分:0)

也许这个问题的接受答案适用于您的特定字体:

@font-face declarations don't work in Android 4.3 Internet browser?