1下載最新版本Font Awesome
選擇最新免費使用版本下載:
https://www.thinkcmf.com/font_awesome.html
2 將字型轉換為 BASE64
2.1 進入轉換網站 transfonter.org https://transfonter.org/
2.2 解壓下載好的 fontawesome-free-5.0.13.zip
2.3 點選網址上的Add fonts:
點選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---