- 用canvas 画圆形,文字之后, 模拟器中颜色正常, 真机上就反色了
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html wx.createSelectorQuery().select('#canvas') .fields({ node: true, size: true, }) .exec((res) => { let canvas = res[0].node const width = res[0].width const height = res[0].height ctx = canvas.getContext('2d') const dpr = wx.getSystemInfoSync().pixelRatio canvas.width = width * dpr canvas.height = height * dpr ctx.scale(dpr, dpr) // ctx.globalAlpha(1); this.bigCircle(0,0); }) ------- ctx.beginPath(); ctx.arc(x, y, 130, Math.PI, 2 * Math.PI); ctx.lineWidth = 25; ctx.strokeStyle="#E5E5E5"; ctx.stroke(); ctx.closePath();
2023-06-25 - 文字转语音插件 华为mate40 不发声?
文字转声音插件是 0.3.5版本 微信小程序 调试基础库是2.14.1 版本 在模拟上, ios手机上都可以正常的把文字转为声音, 在华为mate 40 ,鸿蒙系统上不行
2022-01-28