這對我來說很困惑。我正在使用字體松鼠下載Web工具包以顯示自定義字體。這裏是鏈接到字體:http://www.fontsquirrel.com/fontfacedemo/League-Gothic@ font-face在Chrome中可用,但不適用於IE或Firefox
如果你在網頁看現在:http://www.simonsayswebsites.com/
正文中間寫着「定製網站,旨在幫助您獲得更多的客戶。」它看起來很棒,完全按照它的樣子,但是如果你用firefox或者IE瀏覽它,自定義字體將不起作用。
這裏的CSS生成字體面:
@font-face {
font-family: 'LeagueGothicRegular';
src: url('http://simonsayswebsites.com/wp-content/themes/twentytenchild/League_Gothic-webfont.eot');
src: url('http://simonsayswebsites.com/wp-content/themes/twentytenchild/League_Gothic-webfont.eot?#iefix') format('embedded-opentype'),
url('http://simonsayswebsites.com/wp-content/themes/twentytenchild/League_Gothic-webfont.woff') format('woff'),
url('http://simonsayswebsites.com/wp-content/themes/twentytenchild/League_Gothic-webfont.ttf') format('truetype'),
url('http://simonsayswebsites.com/wp-content/themes/twentytenchild/League_Gothic-webfont.svg#LeagueGothicRegular') format('svg');
font-weight: normal;
font-style: normal;
}
人有什麼想法?我看了很多關於這方面的案例,但我沒有看到與我的案例有關的案例,因爲我認爲我已經爲每個瀏覽器包含了所有不同的必要文件,並將它們上傳到了他們尊敬的地方。
我在Firefox中看到「LeagueGothicRegular」。 –
[這可能會幫助你](http://geoff.evason.name/2010/05/03/cross-domain-workaround-for-font-face-and-firefox/)。 –
問題是網址顯示的方式......你不能擁有絕對的網址,無論出於何種原因哈哈。但是謝謝Shekh的那個鏈接,它爲我今後必須做的事提供了一個很好的背景。感謝Arash的建議,謝天謝地我現在都很好。 – king