第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

水草不能浮動(dòng)了

// JavaScript Document

var aneObj=function(){

this.rootx=[];

this.headx=[];

this.heady=[];

this.amp=[];

this.alpha=0;

}

aneObj.prototype.num=50;

aneObj.prototype.init=function(){

for(var i=0;i<this.num;i++){

this.rootx[i]=i*16+Math.random()*20;

this.headx[i]=this.rootx[i];

this.heady[i]=canHeight-250+Math.random()*50;

this.amp[i]=Math.random()*50+50;

}

}

aneObj.prototype.draw=function(){

this.alpha+=deltaTime*0.0008;

var l=Math.sin(this.alpha);

ctx2.save();

ctx2.globalAlpha=0.6;

ctx2.lineWidth=20;

ctx2.lineCap="round";

ctx2.strokeStyle="#3b154e";

for(var i=0;i<this.num;i++){

ctx2.beginPath();

ctx2.moveTo(this.rootx[i],canHeight);

this.headx[i]=this.rootx[i]+1*this.amp[i];

ctx2.quadraticCurveTo(this.rootx[i],canHeight-100,this.headx[i],this.heady[i]);

ctx2.stroke();

}

ctx2.restore();

}


// JavaScript Document

var fruitObj=function(){

this.alive=[];

this.x=[];

this.y=[];

this.aneNO=[];

this.l=[];

this.spd=[];

this.fruitTpye=[];

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]=false;

this.x[i]=0;

this.y[i]=0;

this.aneNO[i]=0;

this.spd[i]=Math.random()*0.017+0.003;

this.fruitTpye[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++){

if(this.alive[i]){

if(this.fruitTpye[i]=="blue"){

var pic=this.blue;

}

else{

var pic=this.orange;

}

if(this.l[i]<=14){

var NO=this.aneNO[i];

this.x[i]=ane.headx[NO];

this.y[i]=ane.heady[NO];

this.l[i]+=this.spd[i]*deltaTime;

}

? ?else{

? ? this.y[i]-=this.spd[i]*7*deltaTime;

? ?}

? ?ctx2.drawImage(pic,this.x[i]-this.l[i]*0.5,this.y[i]-this.l[i]*0.5,this.l[i],this.l[i]);

? ?if(this.y[i]<10){

? ? this.alive[i]=false;

? ?}

}

}

}

fruitObj.prototype.born=function(i){

this.aneNO[i]=Math.floor(Math.random()*ane.num);

this.l[i]=0;

this.alive[i]=true;

var ran=Math.random();

if(ran<0.2){

this.fruitTpye[i]="blue";

}

else{

this.fruitTpye[i]="orange";

}

}

fruitObj.prototype.dead=function(i){

this.alive[i]=false;

}

function fruitMonitor(){

var num=0;

for(var i=0;i<fruit.num;i++){

if(fruit.alive[i])num++;

}

if(num<15){

sendFruit();

return;

}

}

function sendFruit(){

for(var i=0;i<fruit.num;i++){

if(!fruit.alive[i]){

fruit.born(i);

return;

}

}

}


正在回答

1 回答

var l=Math.sin(this.alpha);

this.headx[i]=this.rootx[i]+1*this.amp[i];

是不是l寫(xiě)成1了

1 回復(fù) 有任何疑惑可以回復(fù)我~
#1

1348448970 提問(wèn)者

非常感謝!
2016-03-20 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消

水草不能浮動(dòng)了

我要回答 關(guān)注問(wèn)題
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)