0
當我持續按下按鈕時,圖像閃爍。問題可能在ctx.clearRect(0,0,100,500)
。我該如何解決這個問題?按下按鈕後圖像不斷閃爍?
我想在HTML 5畫布中動畫。 我需要在畫布中移動的物體,當我按下按鈕時,另一個移動物體按照前一個沒有閃爍。
function draw(x,y){
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
ctx.save();
ctx.clearRect(0,0,100,500); // This may be the problem
var img=document.getElementById("Image");
ctx.drawImage(img,50,y);
ctx.restore();
y -= 10;
var loopTimer = setTimeout('draw('+x+','+y+')',50);
}
HTML 5
<button onclick="draw(0,500)">Draw</button>
<canvas id="canvas" width="600" height="500">
</canvas>
我似乎沒有得到在Chrome中的這種閃爍。你有哪些瀏覽器有問題? –
你可以把這個放在jsfiddle中,所以我們可以看到你看到的。 –