Code:
setTimeout(function() {
$('#StartBtn').css('visibility', 'visible');
}, 3000);
Code:
<div id="StartBtn">Start Game</div>
Code:
<div id="HomePanel" class="GamePanel">
setTimeout(function() {
$('#StartBtn').css('visibility', 'visible');
}, 3000);
<div id="StartBtn">Start Game</div>
<div id="HomePanel" class="GamePanel">
ShowHomeScreen();
function EndGame(HasTiledOut) {
$('#EntireScreen').html('');
var GameOutcomeText = (HasTiledOut) ? 'Busted!!' : 'Try Again!';
$('#GameOutcome').text(GameOutcomeText).fadeIn();
setTimeout(function()
Leave a comment: