createLinearGradient绘画黑色渐变透明遮罩,开发工具显示正常,但安卓和ios的真机上会有个白底。
const ctx = wx.createCanvasContext('myCanvas')
// Create linear gradient
const grd = ctx.createLinearGradient(0, 0, 200, 0)
grd.addColorStop(0, 'rgba(0,0,0,.5)')
grd.addColorStop(1, 'rgba(0,0,0,0)')
// Fill with gradient
ctx.setFillStyle(grd)
ctx.fillRect(10, 10, 150, 80)
ctx.draw()
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)