- webview会自动刷新
target:iphone12promax 微信小程序 webview 网页会自动刷新 网页端做了解压文件的操作。
2023-03-09 - 为什么升级到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-10