我是使用@font-face 渲染字体的新手。我在我的设计中使用 Gill Sans 字体系列。我进行了研究以了解使其对我有用,但我无法理解如何使用它。我使用的字体类型没有.eot
和.woff
字体类型。我只能在我的字体文件夹中看到 gill sans font true type 字体。
我想看看是否有人可以帮助了解它的工作原理并让我更容易使用它。我无法理解下面的代码中发生了什么。
@font-face {
font-family: 'MyWebFont';
src: url('webfont.eot'); /* IE9 Compat Modes */
src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('webfont.woff') format('woff'), /* Modern Browsers */
url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}