1

我正在使用@font-face 加载我在服务器上托管的字体并用于我目前正在开发的网站。除 iOS 设备(iPhone、iPad)外,这些字体在任何地方都可以正常工作。当我在 ipadpeek.com 等在线 iOS 设备模拟器上测试该网站时,它运行良好,但在网站本身上对其进行测试时,它就无法正常工作。

这就是我使用@font-face 嵌入字体的方式

@font-face {
    font-family: 'droid_arabic_kufiregular';
    src: url('css/fonts/droidkufi-regular-webfont.eot');
    src: url('css/fonts/droidkufi-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('css/fonts/droidkufi-regular-webfont.woff') format('woff'),
         url('css/fonts/droidkufi-regular-webfont.ttf') format('truetype'),
         url('css/fonts/droidkufi-regular-webfont.svg#droid_arabic_kufiregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'droid_arabic_kufiregular';
    src: url('css/fonts/droidkufi-blod-webfont.eot');
    src: url('css/fonts/droidkufi-blod-webfont.eot?#iefix') format('embedded-opentype'),
         url('css/fonts/droidkufi-blod-webfont.woff') format('woff'),
         url('css/fonts/droidkufi-blod-webfont.ttf') format('truetype'),
         url('css/fonts/droidkufi-blod-webfont.svg#droid_arabic_kufiregular') format('svg');
    font-weight: bold;
    font-style: normal;

}

有什么线索吗?

4

1 回答 1

0

您是否使用 FontSquirrel 来转换您的字体?看看这篇文章中的修复是否有帮助: http ://blog.echoenduring.com/2011/12/01/quick-tip-svg-fonts-font-face/

于 2013-06-14T17:37:23.073 回答