0
我一直在嘗試使遊戲開始時出現閃屏,並且它確實出現,但它會以太快的速度淡出。試圖在函數內創建setTimeout,但它停止工作並完全破壞代碼。JavaScript啓動畫面setTimeout問題。
var introimg;
var intro = true;
function gameStart() {
ctx.clearRect(0,0,window.innerWidth, window.innerHeight);
ctx.drawImage(introimg, 0,0,window.innerWidth, window.innerHeight);
//setTimeout(gameStart, 5000);
}
function setup(){
introimg = new Image();
introimg.src = 'ICE/data/splash.png';
document.addEventListener("touchstart", onTouchStart);
document.addEventListener("touchmove", onTouchMove);
document.addEventListener("touchend", onTouchEnd);
gameStart();
draw();
}
function draw(){
ctx.fillStyle = "rgba(0,0,0,0.1)";
ctx.fillRect(0,0,window.innerWidth,window.innerHeight);
for(var i = 0;i<ressources.length;i++){
ressources[i].display();
}
requestAnimationFrame(draw);
}
請幫忙。
預先感謝您。
你可能需要更換'gameStart();''在用'的setTimeout(gameStart,5000)setup';'。 – Xufox