无法在HTML5中清除画布

时间:2012-05-22 11:33:41

标签: javascript html5-canvas

我在HTML页面中有几个画布分层,我希望能够更改顶层,它显示用户可以选择的图像。

问题是,每当我调用clearRect时,它会暂时清除画布,然后重新加载上一个图像。

这是我的javascript代码:

window.onload = function(){
    init();
    drawAll();  
}
function clear(){
    ctx2.clearRect(0,0,WIDTH,HEIGHT);
}

function init() {
    city.src ="city.png";
    image2.src="image.png";
    layer1 = document.getElementById("layer1");
    ctx1 = layer1.getContext("2d");
    layer2 = document.getElementById("layer2");
    ctx2 = layer2.getContext("2d");
}


function drawAll() {
    draw1();
    draw2();
}

function draw2() {
    ctx2.clearRect(0,0,WIDTH,HEIGHT);
    ctx2.drawImage(image2, 240, 200);
}

function draw1() {
    ctx1.clearRect(0, 0, WIDTH, HEIGHT);
    ctx1.drawImage(city, 0, 0);
}

为什么会这样?我错过了什么?

1 个答案:

答案 0 :(得分:1)

您应该包含HTML代码,因为目前尚不清楚您的问题是什么,但这就是我的想法。

“ WIDTH”和“ HEIGHT”可能是这里的麻烦制造者。您是否尝试过用canvas.width和canvas.height替换它们?

var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext('2d');

function draw() {
  ctx.clearRect(0, 0, canvas.width, canvas.height);
  ctx.fillStyle = "#F00";
  ctx.fillRect(0, 0, 320, 180);
}

draw();
<canvas id="myCanvas" width=400 height=400></canvas>