1

我正在使用 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)
      }

谢谢

4

1 回答 1

2

cirSize++将加一,++cirSize. 但是有区别。前者将返回cirSizefirst的值,然后递增。而后者将先递增然后返回cirSize

var cirSize = 2;

while (cirSize < 400)
  {
    ctx.beginPath();
    ctx.strokeStyle="#000000"; 
    ctx.arc(480,480,cirSize,0,Math.PI*2,true);
    ctx.stroke();
    cirSize += 3; // here's the change.
    alert(cirSize)
  }
于 2012-06-06T14:35:12.610 回答