在我的游戏中,我将计时器设置为 30000 毫秒(30 秒)。当计时器结束时,游戏结束。我想向用户展示计时器,让他们了解他们还剩多长时间。我将如何做到这一点,我试图这样做:
setTimeout(function() {
$("#message").html('Thank you for playing. </br> You answered </br>' + hit + '/' + attempted + ' correctly. </br> Press "Play" to start again.').fadeIn('slow');
$(".character").fadeIn('slow');
}, 500);
});
}, 30000).show('#timer'); //here I am trying to display the time in the "#timer"
}
我想我正在接近这一切都是错误的,有人可以给我指出正确的方向吗?
小提琴:http: //jsfiddle.net/cFKHq/8/