ctx.save()
ctx.fillStyle = "#fff";
ctx.globalAlpha = 1;
ctx.fillRect(0, 0, res.screenWidth, res.screenWidth * 0.8)
ctx.restore()
ctx.save()
ctx.globalCompositeOperation = 'destination-out'
ctx.beginPath();
ctx.arc(res.screenWidth / 2, res.screenWidth / 10 * 4, res.screenWidth / 3, 0, 2 * Math.PI);
ctx.fill();
ctx.stroke();
ctx.save()
ctx.beginPath();
ctx.fillStyle = "#fff";
ctx.lineWidth = 1
ctx.arc(res.screenWidth / 2, res.screenWidth / 10 * 4, res.screenWidth / 3, 0, 2 * Math.PI);
ctx.stroke();
ctx.restore()
ctx.draw()
镂空圈---------------
最新推荐文章于 2024-11-05 22:07:06 发布