字体压缩 - 字蛛 font-spider

个人博客:柚子青年。

原文链接:字体压缩 - 字蛛 font-spider

安装 font-spider
npm install font-spider

index.html

<div class="content">0123456789</div>

index.css

@font-face {
font-family: 'DINAlternateBold';
src: url('./font/DIN-Alternate-Bold.ttf')
}
.content {
font-family: DINAlternateBold;
}
执行命令
font-spider index.html // html 路径

注:执行后会生成一个新的字体包,只有在html内的文字才会在字体包内,适用于数字英文特殊字体处理

猜你喜欢

转载自www.cnblogs.com/webff/p/12641504.html