从icomoon加载自定义字体

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从icomoon加载自定义字体相关的知识,希望对你有一定的参考价值。

我正在使用icomoon创建自定义字体,但我无法加载它。我已经使用字体书检查了它似乎没关系,但我在加载它时遇到问题。

@font-face {
  font-family: 'icomoon';
  src: url('icomoon.eot');
  src: url('icomoon.eot#iefix') format('embedded-opentype'), url('dilatefonts/icomoon.ttf') format('truetype'), url('icomoon.woff') format('woff'), url('icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

enter image description here enter image description here

答案

看起来你的style.css和字体在同一个文件夹中。请尝试从字体路径中删除扩张字体。以下示例 -

  @font-face {
  font-family: 'icomoon';
  src: url('icomoon.eot');
  src: url('icomoon.eot#iefix') format('embedded-opentype'), url('dilatefonts/icomoon.ttf') format('truetype'), url('icomoon.woff') format('woff'), url('icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

以上是关于从icomoon加载自定义字体的主要内容,如果未能解决你的问题,请参考以下文章

ICOMOON!强悍的WEB字体图标制造器/Web字体使用实例

sench touch 自定义小图标(转)

使用icomoon字体图标详解

在线制作自定义字体

从应用程序特定文件夹加载自定义字体文件

如何从资源中加载自定义字体? [C#]