字体

最近更新时间:2023-10-20 15:19:17

我的收藏

loadFontFace

该 API 使用方法为 wx.loadFontFace(Object object)
功能说明:动态加载网络字体,文件地址需为下载类型,需在 app.js 中调用。
注意:
字体文件返回的 contet-type 参考 font,格式不正确时会解析失败。
字体链接必须是 https( iOS 不支持 http)。
字体链接必须是同源下的,或开启了 cors 支持,小程序的域名是 servicewechat.com。
工具里提示 Faild to load font 可以忽略。
2.10.0以前仅在调用页面生效。
参数及说明:Object object
属性
类型
默认值
必填
说明
global
boolean
false
是否全局生效
family
string
-
定义的字体名称
source
string
-
字体资源的地址。建议格式为 TTF 和 WOFF,WOFF2 在低版本的 iOS 上会不兼容
desc
object
-
可选的字体描述符
scopes
Array
-
字体作用范围,可选值为 webview / native,默认 webview,设置 native 可在 Canvas 2D 下使用
success
function
-
接口调用成功的回调函数
fail
function
-
接口调用成功的回调函数
complete
function
-
接口调用结束的回调函数(调用成功、失败都会执行)
desc 结构值
结构属性
类型
默认值
必填
说明
style
string
normal
字体样式,可选值为 normal / italic / oblique
weight
string
normal
字体粗细,可选值为 normal / bold / 100 / 200/ 900
variant
string
normal
设置小型大写字母的字体显示文本,可选值为 normal / small-caps / inherit
object.success 回调函数参数:Object res
属性
类型
说明
status
string
加载字体结果
object.fail 回调函数参数:Object res
属性
类型
说明
status
string
加载字体结果
object.complete 回调函数参数:Object res
属性
类型
说明
status
string
加载字体结果
示例代码
wx.loadFontFace({
family: 'Bitstream Vera Serif Bold',
source: 'url("https://sungd.github.io/Pacifico.ttf")',
success: console.log
})