该 API 使用方法为 wx.loadFontFace(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
global | boolean | false | 否 | 是否全局生效 |
family | string | - | 是 | 定义的字体名称 |
source | string | - | 是 | 字体资源的地址。建议格式为 TTF 和 WOFF,WOFF2 在低版本的 iOS 上会不兼容 |
desc | object | - | 否 | 可选的字体描述符 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用成功的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
结构属性 | 类型 | 默认值 | 必填 | 说明 |
style | string | normal | 否 | 字体样式,可选值为 normal / italic / oblique |
weight | string | normal | 否 | 字体粗细,可选值为 normal / bold / 100 / 200/ 900 |
variant | string | normal | 否 | 设置小型大写字母的字体显示文本,可选值为 normal / small-caps / inherit |
属性 | 类型 | 说明 |
status | string | 加载字体结果 |
属性 | 类型 | 说明 |
status | string | 加载字体结果 |
属性 | 类型 | 说明 |
status | string | 加载字体结果 |
wx.loadFontFace({family: 'MyFont',source: 'url("https://sungd.github.io/Pacifico.ttf")',success: console.log})
page {font-family: 'MyFont';}
本页内容是否解决了您的问题?