- 什么时候会出支持小程序的weapp-adapter
小游戏都有支持的weapp-adapter,啥时候能提供一下小程序的weapp-adapter.有H5的应用都不知道怎么移植进来.
2018-10-25 - canvas的fillRect与drawImage问题
- 当前 Bug 的表现(可附上截图) filleRect后,clip圆型区域画图片变成了方的了 [图片] - 预期表现 1.图片是圆的而不是方的 - 复现路径 - 提供一个最简复现 Demo draw: function() { const ctx = wx.createCanvasContext('test1') // save the default fill style ctx.save() ctx.setFillStyle('blue') ctx.fillRect(10, 10, 150, 100) // restore to the previous saved state ctx.restore() // ctx.save() // ctx.setFillStyle('red'); // ctx.fillRect(50, 50, 150, 100) // ctx.restore() ctx.save() ctx.beginPath() ctx.arc(100, 50, 25, 0, 2 * Math.PI) ctx.clip() ctx.setFillStyle('yellow'); ctx.fill() ctx.drawImage('/images/wx.jpg', 75, 25, 50, 50) ctx.restore() ctx.draw() }
2018-11-24