@H_403_1@我试图画出多个填充不同颜色的圆弧
//-------------- draw ctx.beginPath(); ctx.fillStyle = "black"; ctx.arc(30,30,20,Math.PI*2,true); ctx.fill(); ctx.fillStyle = "red"; ctx.arc(100,100,40,true); ctx.fill(); ctx.closePath();
这样会产生两个充满红色的弧线,我可以看出,较小的弧线周围有一个微弱的黑色轮廓。
任何人都可以看出我能如何实现这一目标?我在做错什么?