在uni-app中使用阿里巴巴图标库字体图标

阿里巴巴图标库 

添加图标、下载、引入的使用方法:

1、添加图标

 

 

 

2、下载到字体图标文件后,复制圈中的两个文件到static目录下:

       

3、新建一个自定义字体图标样式文件: font-icon.css

 

4、给font-icon.css添加内容

 

 5、font-icon.css具体代码:

@font-face {
    font-family: uniicons;
    font-weight: normal;
    font-style: normal;
    src:url('~@/static/font/iconfont.ttf') format('truetype'); 
}

.icon {
    color: #999;
    font-family: uniicons;
    font-size: 42upx;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    display: inline-block;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
}

.icon.uni-active {
    color: #1ca6ec;
}


// 下面的样式直接复制 .iconfont
{ font-family: "iconfont" !important; font-size: 16px; font-style: normal; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-fanhuishouye:before { content: "e631"; } .iconfont { font-family: "iconfont" !important; font-size: 16px; font-style: normal; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-shouye:before { content: "e63f"; } .icon-fanhuishouye:before { content: "e640"; } .icon-wode:before { content: "e641"; } .icon-guanli:before { content: "e642"; }

 6、页面写入字体图标

<view class="icon icon-showye"></view>

 

原文地址:https://www.cnblogs.com/stella1024/p/12505703.html