我正在使用 HTML5 画布元素制作一系列圆圈。我正在使用 while 循环来增加圆圈的大小。我试图将它们增加三,但我不确定语法是否正确。
var cirSize = 2;
while (cirSize < 400)
{
ctx.beginPath();
ctx.strokeStyle="#000000";
ctx.arc(480,480,cirSize++,0,Math.PI*2,true);
ctx.stroke();
alert(cirSize)
}
谢谢