Android ブラウザー用の HTML5 でゲームを作成していますが、何回かキャンバスのアニメーションが理由もなく突然停止した後ですか?
function updateAnimation()
{
context.clear = true; // makes the canvas clear itself on every frame
context.save();
context.clearRect(0,0,ourGameCanvas.width,ourGameCanvas.height);
context.drawImage(bg_img,0,0,ourGameCanvas.width,ourGameCanvas.height);
context.restore();
}
function startupTouchEvents()
{
ourGameCanvas.addEventListener("touchstart", handleStart, false);
ourGameCanvas.addEventListener("touchmove", handleMove, false);
}
function handleStart(evt)
{
evt.preventDefault();
var touches = evt.changedTouches;
}
function handleMove(evt)
{
evt.preventDefault();
}
画面に何度も触れると、理由もなくアニメーションがかがみました!!!
何か案が ?