uniapp引入iconfont字体图标
在APP中使用网络的字体图标显示错误,需转换到本地使用,下载iconfont文件会得到iconfont.ttf
通过这个网站快速转换:https://www.giftofspeed.com/base64-encoder/
将这个文件转换成base64编码,在iconfont.css
中引入
@font-face {
font-family: "iconfont";
src: url(data:font/truetype;charset=utf-8;base64, 转换的base64内容 ) format('truetype');
}
1
2
3
4
2
3
4
上次更新: 2024/05/23, 16:25:31