選擇最新無償使用版本下載:javascript
https://www.thinkcmf.com/font_awesome.html
css
2.1 進入轉換網站 transfonter.org https://transfonter.org/
2.2 解壓下載好的 fontawesome-free-5.0.13.zip
2.3 點擊網址上的Add fonts:
html
@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;
}
複製代碼
<text class="fa fa-user"></text>
複製代碼
.fa-picture-o:before {
content: "\f03e";
}複製代碼
---End---java