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

为何我的不能清除之前的图形

var ball = {x:512, y:100, r:20, g:2, vx:-4, vy:0, color:"#005588"};

window.onload = function(){

var canvas = document.getElementById('canvas');

var context = canvas.getContext('2d');


canvas.width = 1200;

canvas.height = 800;


setInterval(function(){


render(context);

update();



},50)



}


function update(){

ball.x += ball.vx;

ball.y += ball.vy;

ball.vy += ball.g;

}


function render(cxt){

cxt.clearRect(0,0,cxt.canvas.width,cxt.canvas.height);


cxt.fillStyle = ball.color;

cxt.arc(ball.x, ball.y, ball.r, 0, 2*Math.PI);

cxt.closePath();


cxt.fill();

}

http://img1.sycdn.imooc.com//585e3f750001025603870588.jpg

正在回答

1 回答

知道了

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

举报

0/150
提交
取消

为何我的不能清除之前的图形

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