微信小程序引入Font Awesome-icon

1下載最新版本Font Awesome

選擇最新無償使用版本下載:javascript

https://www.thinkcmf.com/font_awesome.html
css

2 將字體轉換爲 BASE64

2.1 進入轉換網站 transfonter.org    https://transfonter.org/
2.2 解壓下載好的 fontawesome-free-5.0.13.zip
2.3 點擊網址上的Add fonts:
html

點擊Add fonts

2.4 進入fontawesome-free-5.0.13\web-fonts-with-css\webfonts 選中fa-solid-900.ttf
fa-solid-900.ttf

2.5 上傳完成後,按下圖配置後,點擊轉換便可
配置轉換

2.6 轉換完成,點擊下載
轉換完成

2.7 解壓,選擇stylesheet.css文件
選擇stylesheet.css文件

2.8 將改文件重命名爲: font-awesome.wxss

3 在app.wxss中引入該文件,而且增長fa樣式

@import "/assets/css/icon/font-awesome.wxss";
.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 200rpx 0;
    box-sizing: border-box;
}

/*增長`fa`樣式*/
.fa {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
複製代碼

4 使用方式

<text class="fa fa-user"></text>
複製代碼

5 樣例:

demo

6 注意,須要引入你要使用的icon的樣式


例如:

.fa-picture-o:before { 
    content: "\f03e"; 
}複製代碼

---End---java

相關文章
相關標籤/搜索