我这边也出现了 12promax 8.0.33页会复现
web-view ios8 当h5使用的内存不断加大时,web-view 会被重载?web-view ios8 当h5使用的内存不断加大时,web-view 会被重载? h5单独使用浏览器或其它设备(ios13)不能重现,目前观察到就 ios8 会复现, 微信版本8.0.29
2023-03-09https://developers.weixin.qq.com/s/VlBR2Im17KAr
为什么升级到canvas2d之后去clip不起效果呢?代码片段:https://developers.weixin.qq.com/s/8Rp9AFmn7s 开发者工具不复现,但是真机不复现。不回复我就只能新起个问题
2022-07-13我也是在开发者工具中不会复现 但是在真机上会出现。已经对开发者工具失去信心了
为什么升级到canvas2d之后去clip不起效果呢?代码片段:https://developers.weixin.qq.com/s/8Rp9AFmn7sA0 [图片] 升级前使用wx.create是可以的。麻烦帮忙解答 困扰了很久很久了
2022-07-11插件内 我想使整个画布有圆角 但是会失败。在小程序内是正常的
小程序Canvas 插件中clip背景图片失败?基础库 wx.createSelectorQuery() .select(`#${this.element}`) .fields({ node: true, size: true }) .exec((res) => { const canvas = res[0].node const ctx = canvas.getContext('2d') that.canvas = canvas canvas.width = that.width * that.destZoom canvas.height = that.height * that.destZoom ctx.textBaseline = 'top'; ctx.strokeStyle = 'white' ctx.font = that.font; that.ctx = ctx that._drawBackground(); ctx.scale(that.destZoom, that.destZoom) }) // const { ltr, rtr, rbr, lbr } = getRadius(radius) ctx.save() ctx.fillStyle = color ctx.beginPath() ctx.moveTo(x + ltr, y) ctx.lineTo(x + width - rtr, y) ctx.quadraticCurveTo(x + width, y, x + width, y + rtr) ctx.lineTo(x + width, y + height - rbr) ctx.quadraticCurveTo(x + width, y + height, x + width - rbr, y + height) ctx.lineTo(x + lbr, y + height) ctx.quadraticCurveTo(x, y + height, x, y + height - lbr) ctx.lineTo(x, y + ltr) ctx.quadraticCurveTo(x, y, x + ltr, y) ctx.clip(); ctx.closePath() ctx.fill() ctx.fillRect(0, 0, 0, 0) // 解决后面clip失效问题 ctx.restore() 插件内:想给画布画一个圆角,效果一直不出来。但是放在小程序内是可以的
2022-05-11