0

我想在我自己的服务器上使用谷歌的网络字体加载器和我自己的自定义字体。

对于如何按照谷歌自己的文档中的描述配置我自己的网络字体提供程序,我有点困惑:

In addition to the google, typekit, ascender and monotype options, 
there is also a custom module that can load a stylesheet
from any web-font provider.

WebFontConfig = {
  custom: { families: ['OneFont', 'AnotherFont'],
    urls: [ 'http://myotherwebfontprovider.com/stylesheet1.css',
      'http://yetanotherwebfontprovider.com/stylesheet2.css' ] }
};

为了使用这个库,我的外部 css 应该包含什么?

4

1 回答 1

0

看看@font-face kits,像 font squirrel 这样的地方是一个不错的起点。您可以将各种文件格式(如 woff、svg 等)保存到字体文件夹中,将@font face kit 提供的 css 添加到您自己的样式表中,然后尽快将其与其余 CSS 一起在您的脑海中调用当您阅读网站上的文档时,它会很有意义,任何进一步的帮助都可以随时询问

于 2013-02-10T00:30:55.910 回答