canves小球碰壁反弹

        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);

 

你可能感兴趣的:(js)