qq_月如钩_0
2015-11-03 13:12
aneObj.prototype.draw = function()
{
ctx2.save();
ctx2.globalAlpha = 0.6;
ctx2.strokeStyle = "#3b154e";
ctx2.lineWidth = 20;
ctx2.lineCap = "round";
ctx2.stroke();
for(var i =0 ;i<this.num;i++)
{
ctx2.beginPath();
ctx2.moveTo(this.x[i],canHeight);
ctx2.lineTo(this.x[i],canHeight - this.len[i]);
}
ctx2.restore();
}
为什么我只能画出一条海葵啊?
估计前面设置X坐标时没加上Math.random()*20之类的。
HTML5小游戏---爱心鱼(上)
92348 学习 · 551 问题
相似问题