canvesの小さいボールが壁にぶつかって反発します.
629 ワード
var cvs=document.getElementById("box");// canves
var ctx=cvs.getContext("2d");// 2d
var x=0,y=0,l=true,r=true;
//
function move(){
//
ctx.clearRect(0,0,cvs.width,cvs.height)
if(l){
x++;
if(x>cvs.width-50){
l=false;
}
}else{
x--;
if(x<0){
l=false;
}
}
if(r){
y++;
if(y>cvs.height-50){
r=false;
}
}else{
y--;
if(y<0){
r=false;
}
}
//
ctx.beginPath();
ctx.fillStyle="blue";
ctx.fillRect(x,y,50,50);
ctx.closePath()
}
//
setInterval(move,10);