果實出不來怎么辦,顯示錯誤NS_ERROR_NOT_AVAILABLE:
這是我的fruit.js
var fruitObj=function(){
?? ?this.alive=[]; //bool
?? ?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.blue.scr="./src/blue.png";
?? ?this.orange.scr="./src/fruit.png";
}
fruitObj.prototype.draw=function()
?? ?{
?? ??? ?for (var i = 0; i < this.num; i++) {
?? ??? ??? ?
?? ??? ??? ? //draw
?? ??? ??? ? //find a ane, grow,fly up
?? ??? ??? ? ctx2.drawImage(this.orange,this.x[i]-this.orange.width*0.5,this.y[i]-this.orange.height*0.5);?? //顯示這一句有問題
?? ?}
}
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
我的問題也是沒實現(xiàn)
2016-08-25
? ctx2有沒有寫錯,cxt2
2016-07-28
樓主請問你的問題解決了嗎?我的跟你一樣的問題
2016-04-05
?this.blue.scr="./src/blue.png";
?this.orange.scr="./src/fruit.png";
這里是src