代碼沒(méi)有報(bào)錯(cuò),按照老師敲得,看了4.5遍也沒(méi)找出來(lái)錯(cuò)誤,為什么沒(méi)有果實(shí)
var fruitObj=function()
{
this.alive=[];
this.x=[];
this.y=[];
this.orange=new Image();
this.blue=new Image();
}
fruitObj.prototype.num=30;
fruitObj.prototype.init=function()
{
? ? for (var i=0;i<this.num;i++)?
? ? {
? ? this.alive[i]=true;
? ? this.x[i]=0;
? ? this.y[i]=0;
? ? this.born(i);
? ? }
? ? this.orange.src="./src/fruit.png";
? ? this.blue.src="./src/blue.png";
}
fruitObj.prototype.draw=function()
{
? ?for (var i = 0; i<this.num; i++)?
? ?{
? ? ctx2.drawImage(this.orange,this.x[i],this.y[i]);
? ?}
}
fruitObj.prototype.born=function(i)
{
var aneID=Math.floor(Math.random()*ane.num);
? ? this.x[i]=ane.x[aneID];
? ? this.y[i]=canHeight-ane.len[aneID];
}
2017-06-14
怎么改的
2016-12-04
麻蛋,這個(gè)代碼沒(méi)錯(cuò),是main.js中的這節(jié)代碼打錯(cuò)了,我重新打了一遍就有了