具体代码如下
let left=0; this.data.awardCanvas.moveTo(left,0) this.data.awardCanvas.lineTo(left+400,0); this.data.awardCanvas.lineTo(left+400,150); this.data.awardCanvas.lineTo(left,150); this.data.awardCanvas.stroke() this.data.awardCanvas.setFillStyle('#ddd') this.data.awardCanvas.fill() this.data.awardCanvas.draw()
4、开始做刮刮卡的动作,在canvas定义bindtouchstart和bindtouchmove两个触发的动作
bindtouchstart是开始落手指的第一个位置,bindtouchmove是手指移动的位置
其中重要一个canvas属性是clearRect,清除画布上的内容
clearRect(清除位置的X坐标,清除位置的Y坐标,清除的宽度,清除的高度)
具体代码如下:
this.data.awardCanvas.clearRect(x,y,15,15); this.data.awardCanvas.draw(true)
具体的代码在https://github.com/zhaodengping/scratch-mini
快去试试吧,也许能刮到一等奖哦~~
推荐教程:《微信小程序》
以上就是微信小程序刮刮卡的实现的详细内容,更多请关注其它相关文章!