阿里上下载的字体css
@font-face {
font-family: 'smalle';
src: url('@/styles/iconfont/iconfont.ttf') format('truetype');
}
.smalle {
font-family: 'smalle' !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
}
使用iconfont的页面。
<template>
<text class="smalle">text->{{ iconName }}</text>
</template
const domModule = uni.requireNativePlugin('dom');
domModule.addRule('fontFace', {
fontFamily: 'smalle',
src: "url('@/styles/iconfont/iconfont.ttf')",
});
feier567 (作者)
用unicode值也不行,不管是直接用text标签还是用FirstUI的icon组件,都不显示
2023-07-19 15:35
哈哈柚
回复 feier567: 还得加下面style的class,严格按照文档
2023-07-19 15:57