如何以编程方式检索Fontello图标的代码

时间:2019-09-06 09:35:58

标签: svg icons fontello

在fontello.css文件中,我可以看到图标的代码,例如:

.icon-user:before { content: '\e811'; }

这是我需要检索的e811部分,用于将图标嵌入SVG图表中。

我希望能够以编程方式检索我所有图标的代码。 没有config.json文件,但是此“ e811”代码不在其中。这是该图标的含义:

{
  "uid": "8b80d36d4ef43889db10bc1f0dc9a862",
  "css": "user",
  "code": 59409,
  "src": "fontawesome"
}

如何以编程方式检索图标的4个字母的代码?谢谢

1 个答案:

答案 0 :(得分:0)

我发现,config.json文件中的代码是css文件中代码的十进制版本。您需要使用<li> <label for="name"></label> // typo 1 <input type="text" name="Name" class="input-fields"> </li> <li> <label for="description"></label> // typo 2 <input type="text" name="Description" class="input-fields"> </li> <li> <label for="date"></label> // typo 3 <input type="date" name="DateOfAdopting" class="input-fields"> </li> <li> <label for="resolution"></label> <input type="file" name="resolution" class="input-fields"> </li> <li> <input type="submit" name="submit-button" value="Add Resolution"> </li>

进行转换

例如code.toString(16)
顺便说一下,也可以写成(59409).toString(16) == 'e811'

旁注

实际上,甚至不需要手动转换代码,此本地javascript函数可以为我们完成此操作:59409..toString(16) == 'e811'