我有一些用fontello生成的图标字体文件,我想添加到我的离子2应用程序。
Fontello以下列格式生成文件:
eot, svg, ttf, woff, woff2
我可以使用svg或ttf文件逃脱吗?对于离子2应用程序,推荐使用哪种格式?
字体的css如下所示:
@font-face {
font-family: 'fontello';
src: url('../font/fontello.eot?85689097');
src: url('../font/fontello.eot?85689097#iefix') format('embedded-opentype'),
url('../font/fontello.woff2?85689097') format('woff2'),
url('../font/fontello.woff?85689097') format('woff'),
url('../font/fontello.ttf?85689097') format('truetype'),
url('../font/fontello.svg?85689097#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
我可以简单地删除不需要的字体行吗?