倒数计时器重置日期

时间:2017-08-26 00:40:33

标签: javascript html

我尝试获取以下代码以在达到指定日期后重置计时器,以便它将在下一周重新启动。请帮助!!

<script>
    // Set the date we're counting down to
    var countDownDate = new Date("Aug 26, 2017 0:0:0").getTime();

    // Update the count down every 1 second
    var x = setInterval(function() {

    // Get todays date and time
    var now = new Date().getTime();

    // Find the distance between now an the count down date
    var distance = countDownDate - now;

    // Time calculations for days, hours, minutes and seconds
    var days = Math.floor(distance / (1000 * 60 * 60 * 24));
    var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
    var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
    var seconds = Math.floor((distance % (1000 * 60)) / 1000);

    // Display the result in the element with id="demo"
    document.getElementById("demo").innerHTML = days + "d " + hours + "h "
    + minutes + "m " + seconds + "s ";

    // If the count down is finished, write some text
    if (distance < 0) {
        clearInterval(x);
        document.getElementById("demo").innerHTML = "GAME DAY";
    }
}, 1000);
</script>

1 个答案:

答案 0 :(得分:2)

将if部分替换为:

if (distance < 0) {
    document.getElementById("demo").innerHTML = "GAME DAY";
    if(distance < - 1000 * 60 * 60* 24){ // if its past the "game day"
        // reset timer to next week
        countDownDate += 1000 * 60 * 60 * 24 * 7
    }
}