为了账号安全,请及时绑定邮箱和手机立即绑定

大鱼不显示出来,请大神帮忙支招

var momObj = function() //大鱼
{	
this.x;	
this.y;
this.bigEye = new Image();	
this.bigBody = new Image();	
this.bigTail = new Image();
}
momObj.prototype.init = function()
{	
this.x = canWidth * 0.5;	
this.y = canHeight * 0.5;	
this.bigEye.src = "img/bigEye0.png";	
this.bigBody.src = "img/bigSwim0.png";	
this.bigTail.src = "img/bigTail0.png";
}
momObj.prototype.draw = function()
{	
ctx1.save();	
ctx1.translate(this.x,this.y);	
ctx1.drawImage(this.bigEye, -this.bigEye.width*0.5, -this.bigEye.height*0.5);
ctx1.drawImage(this.bigBody, -this.bigBody.width*0.5, -this.bigBody.height*0.5);	
ctx1.drawImage(this.bigTail, -this.bigTail.width*0.5 + 30, -this.bigTail.height*0.5); 
ctx1.restore();
}


正在回答

2 回答

mian里的执行顺序的问题正确的是

drawBackground();
fruitMonitor();
fruit.draw();
mom.draw();



0 回复 有任何疑惑可以回复我~

我粘贴复制了,这串代码没有问题。你看看<script type="text/javascript" src="js/mom.js"></script>写没有,或者mom.draw();

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

大鱼不显示出来,请大神帮忙支招

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信