我不明白什么怎么回事,因为我对自己的这是工作(在FireFox)这样的代码:
@font-face {
font-family: 'mmfont';
src: url('/scripts/mmfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
然后我在完全相同的方式加入的第二字体,但只有第一个是工作:
@font-face {
font-family: 'mmfont2';
src: url('/scripts/mmfont2.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
然后,我使用的字体发生器获得了IE9的EOT文件,并生成@字体面的代码对我来说,现在既不字体工作在任何浏览器(我试过IE9,FF12,铬,Safari5)。
然后我把@字体面CSS在自己的“/scripts/fonts.css”文件,这样字体和CSS在同一个文件夹中,我试图用的网址都直接(“mmfont.ttf”)和通过Web根目录文件夹(“/scripts/mmfont.ttf”),但仍然没有办法正常工作的。
我究竟做错了什么?
更正:
:调用第一个字体“mmfont”我这样做时,我有一个错字font-family: mm_font
但现在,我固定的错字,再次只有第一字体正在与下面的代码,而第二字体mmfont2
不工作。 我试图重新安排的顺序(先定义第二字体),但它仍然不会工作。 所以,现在我相信这是与我的字体文件有问题,所以我会尝试让另一个副本,并看到如何继续下去。
更新:
似乎是没有错的代码。 我用萤火做fonts.css文件的源代码编辑,当我改名为“mmfont2”到“mmfont.ttf”(网址为第1字体)的URL它更新了页面,并加载的字体,但是当我给它改名回“mmfont2.ttf”这又回到了浏览器的默认字体。 所以,我现在相信这是字体文件,而不是代码中的问题。
它看起来像我使用这第二字体不是网络兼容的字体。 有趣地,事实证明,所有沿着相同的字体有另一个别名“世纪的哥特式”,这是一个网络安全的字体和甚至无需连接任何文件中的所有浏览器上运行!
(我不知道我是否应该关闭或删除这个问题)
/scripts/fonts.css
@CHARSET "ISO-8859-1";
@font-face {
font-family: 'mmfont';
src: url('/scripts/mmfont.eot');
src: url('/scripts/mmfont.eot?#iefix') format('embedded-opentype'),
url('/scripts/mmfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'mmfont2';
src: url('/scripts/mmfont2.eot');
src: url('/scripts/mmfont2.eot?#iefix') format('embedded-opentype'),
url('/scripts/mmfont2.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
/index.html
<link rel="StyleSheet" href="/scripts/fonts.css" type="text/css">
目录
/
/index.html
/scripts/
/scripts/mmfont.ttf
/scripts/mmfont.eot
/scripts/mmfont2.ttf
/scripts/mmfont2.eot
/scripts/fonts.css