微信小程序使用CSS3字體
2020-09-27|HiShop
導(dǎo)讀:微信小程序使用CSS3字體是在小程序開發(fā)中添加外部字體,那么要如何實現(xiàn)呢。...
@font-face是CSS3中的一個模塊,它主要是把自己定義的Web字體嵌入到的網(wǎng)頁中。
@font-face的語法規(guī)則:
- @font-face {
- font-family: <YourWebFontName>;
- src: <source> [<format>][,<source> [<format>]]*;
- [font-weight: <weight>];
- [font-style: <style>];
- }
IconFont(圖標(biāo)字體)是用字體來代替圖標(biāo)、圖片文件的方法,通過IconFont可以對圖標(biāo)的大小、顏色等進(jìn)行控制。微信小程序的wxss文件的font-face的url不接受http地址作為參數(shù),但可以接受base64,需將圖標(biāo)字體文件轉(zhuǎn)換為base64后引用。
可以從阿里巴巴圖標(biāo)庫(http://www.iconfont.cn/)選擇項目所需要的IconFont,并下載至本地。
解壓下載文件
iconfont.css文件中有字體轉(zhuǎn)換后的base64
- .iconfont {
- font-family:"iconfont" !important;
- font-size:16px;
- font-style:normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .icon-appreciate:before {
- font-family: 'iconfont';
- font-weight: normal;
- font-style: normal;
- content: "\e644";
- }
- .icon-check:before {
- font-family: 'iconfont';
- font-weight: normal;
- font-style: normal;
- content: "\e645";
- }
使用IconFont
- .icon {
- font-family: 'iconfont';
- font-weight: normal;
- font-style: normal;
- font-size: 40px;
- color: #1AAD19
- }
- <view class="weui-grid">
- <view class="weui-grid__icon"><text class="icon icon-appreciate"></text></view>
- <view class="weui-grid__label"><text>appreciate</text></view>
- </view>
- <view class="weui-grid">
- <view class="weui-grid__icon"><text class="icon icon-check"></text></view>
- <view class="weui-grid__label"><text>check</text></view>
- </view>
HiShop小程序工具提供多類型商城/門店小程序制作,可視化編輯 1秒生成5步上線。通過拖拽、拼接模塊布局小程序商城頁面,所看即所得,只需要美工就能做出精美商城。
更多小程序熱點,盡在:http://zytcm.com.cn/xiaocx/
您可能感興趣:小程序開發(fā)