我正在使用HTML5 canvas元素制作一系列的圆圈。我正在使用while循环来增加圆圈的大小。我试图将它们增加3,但是我不确定语法是否正确。

    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)
      }


谢谢

最佳答案

cirSize++将增加1,++cirSize也将增加1。但是有区别。前者将首先返回cirSize的值,然后递增。而后者将先增加然后返回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)
  }

08-05 14:02