html canvas clearRect() 不起作用
html canvas clearRect() doesnt work
我正在学习 html canvas 并尝试制作简单的动画。
我想让矩形向右移动。
你可以在这里查看我的代码。
http://codepen.io/inkluter/pen/GgeQqj
var x = 0, y = 0, w = 200, h = 100;
function draw() {
c.clearRect(0, 0, c.width, c.height);
x++;
c.beginPath();
c.strokeRect(x, y, w, h);
c.closePath();
requestAnimationFrame(draw);
};
问题是 clearRect() 函数似乎不起作用。 canvas.
上仍显示旧矩形
我做错了什么?
'width' 和 'height 属性在 canvas 元素中定义,而不是在上下文中。改为 c.clearRect(0, 0, canvas.width, canvas.height)。
我正在学习 html canvas 并尝试制作简单的动画。 我想让矩形向右移动。 你可以在这里查看我的代码。 http://codepen.io/inkluter/pen/GgeQqj
var x = 0, y = 0, w = 200, h = 100;
function draw() {
c.clearRect(0, 0, c.width, c.height);
x++;
c.beginPath();
c.strokeRect(x, y, w, h);
c.closePath();
requestAnimationFrame(draw);
};
问题是 clearRect() 函数似乎不起作用。 canvas.
上仍显示旧矩形我做错了什么?
'width' 和 'height 属性在 canvas 元素中定义,而不是在上下文中。改为 c.clearRect(0, 0, canvas.width, canvas.height)。