uni.loadFontFace({
global: true, // 全局生效,必填
family: 'bank-font',
source:
'url("https://....ttf")',
scopes: ['webview ', 'native'], // 默认webview, native可在canvas2D下使用,必填,否则canvas绘图的字体无法使用
success() {
console.log('字体加载成功')
},
fail() {
console.log('字体加载失败')
},
})
代码片段如上,在微信小程序手机端查看 canvas字体绘制生效,但是在PC端微信小程序,字体不生效,请问是PC端不支持吗?
你好,麻烦使用原生小程序呢?若还有问题请提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
遇到同样的问题