我已经搜索和搜索,但我仍然无法弄清楚如何在 Firefox 中加载我的自定义字体。使用 @font-face 属性,我在头部有这个:
@font-face {
font-family: 'MeanTimeMedium';
src: url('http://sweetbacklove.com/fonts/meantimec3-webfont.eot');
src: url('http://sweetbacklove.com/fonts/meantimec3-webfont.eot?#iefix') format('embedded-opentype'),
url('http://sweetbacklove.com/fonts/MeanTimec3.ttf') format('truetype'),
url('http://sweetbacklove.com/fonts/meantimec3-webfont.woff') format('woff'),
url('http://sweetbacklove.com/fonts/meantimec3-webfont.svg#MeanTimeMedium') format('svg');}
因为 Firefox 不接受到其他域的直接链接,所以我将一个 .htaccess 文件放在我的“字体”文件夹中,如下所示:
<FilesMatch "\.(ttf|ttc|otf|eot|woff)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
尽管如此,我还是要蹲下。如果有人可以提供任何见解,将不胜感激。
我的网站。字体和 .htaccess 文件托管在装有 IIS 7.0 的 Windows 服务器上的 GoDaddy 上。
谢谢。