ascrazy,
Реализация подсказки
Сообщение от Kolyaj
|
А в чём проблема смотреть на изменение вертикальной составляющей. Не меняется, значит, катаемся.
|
<!DOCTYPE html>
<html>
<meta http-equiv='content-type' content='text/html; charset=windows-1251' />
<script type='text/javascript' >
var point = function(context,color,x,y,a,v,mx,my){
this.context = context; this.x = x;
this.y = y; this.a = a; this.v = v;
this.mx = mx; this.my = my;
this.vx = this.v*Math.cos(this.a/180*Math.PI);
this.vy = this.v*Math.sin(this.a/180*Math.PI);
this.color = color
return true;
};
point.prototype.step = function(){
if(this.x+this.vx>this.mx){this.vx*=-1;this.x=this.mx;}
else if(this.x+this.vx<0){this.vx*=-1;this.x=0;}
else{this.x += this.vx;};
if(this.y+this.vy>this.my){this.vy*=-1;this.y=this.my;}
else if(this.y+this.vy<0){this.vy*=-1;this.y=0;}
else {this.y += this.vy;};
if(this.y+this.vy>0){this.vy += 9.8;};
if(this.stop==this.y){this.vx=0;this.vy=0;document.getElementById("pause").value=1;};
this.stop=this.y;
return true;
};
point.prototype.show = function(){
this.context.fillStyle = this.color;
this.context.fillRect(this.x,this.y,10,10);
return true;
};
point.prototype.hide = function(){
this.context.fillStyle = "#ffffff";
this.context.fillRect(this.x,this.y,10,10);
return true;
};
point.prototype.loop = function(){
this.hide();
this.step();
this.show();
return true;
}
window.onload = function(){
canvas = document.getElementById("surf");
context = canvas.getContext("2d");
//context.fillRect(100,100,100,100);
var top = new point(context,"#000000",0,0,20,10,300,280)
var ID = setInterval(function(){
top.loop();
if (document.getElementById("pause").value!=0) clearInterval(ID);
},100);
return true;
};
</script>
<body>
<canvas id='surf' width='300px' height='300px'></canvas>
<input id='pause' type='hidden' value='0' />
<input type='button' value='stop'
onClick='document.getElementById("pause").value = 1' />
</body>
</html>