0

我正在尝试做一个倒数计时器。我设法制作了一个,但问题是当我关闭浏览器时它会停止。因此,当用户重新访问我的网站时,它会再次重新启动。我想要的是保留那个计时器。例如,如果用户在计时器 22:14:09 离开我的站点。所以计时器将继续。假设用户在一小时后重新访问我的网站,因此时间应该是 21:14:09。 我怎样才能做到这一点?

这是我的 JS

$(function () {
var hrs, mins, secs, TimerRunning, TimerID,
    Timer = {
        init: function () {
            hrs          = 23;
            mins         = 59;
            secs         = 59;
            TimerRunning = false;
            Timer.StopTimer();
            Timer.StartTimer();
         },

         StopTimer: function () {
            if(TimerRunning)
               clearTimeout(TimerID);
            TimerRunning=false;
         },

         StartTimer: function () {
            TimerRunning = true;
            $('.timer').html(Timer.Pad(hrs) + ":" + Timer.Pad(mins) + ":" + Timer.Pad(secs));
            TimerID = self.setInterval("StartTimer()", 1000);

            if(hrs == 0 && mins == 0 && secs == 0)
               StopTimer();

            if (secs == 0) {
               mins--;
               secs = 59;
            }
            if (mins == 0) {
                hrs--;
                mins = 59;
            }
            secs--;
            setTimeout(function () { Timer.StartTimer(); }, 1000);
         },

         Pad: function (number) {
            if(number < 10)
               number = 0+""+number;
            return number;
         }

    };

Timer.init();
});

更新

演示

4

3 回答 3

1

这是我对这个问题的解决方案。

// use hours, minutes & seconds to set time limit
var hours = 1, 
    minutes = 30, 
    seconds = 0,
    maxTime =  ( ( hours * 3600 ) + ( minutes * 60 ) + seconds ) * 1000,
    // if timeleft not in localStorage then default to maxTime
    timeLeft = ( localStorage.timeLeft || maxTime ),
    startTime = new Date(),
    intervalRef;

// check if user has already used up time
if( timeLeft > 0 ) {

    intervalRef = setInterval( setTimeLeft, 5000 );
} else {

    stopTrackingTime();
}

function setTimeLeft( ) {

    // if user has used up time exit
    if( localStorage.timeLeft < 0 ) {

        stopTrackingTime();
    }

    // calculate how long user has left
    var elapsed = ( new Date() - startTime );
    localStorage.timeLeft = timeLeft - elapsed;
};

// function called once user has used up time
function stopTrackingTime( ) {

    clearInterval( intervalRef );
    alert( "end of time allowed" );
}

在这里提琴

于 2012-10-31T11:49:32.157 回答
0

您可以修改您的 StartTimer 函数,以便每次调用它时都会将本地时间戳 ( new Date) 保存在 cookie 或 localStorage 中。此外,setTimeout 不是很可靠,你应该时不时地实时调整时间计数。

于 2012-10-31T08:31:11.847 回答
0

您可以将时间存储在 中LocalStorage,并且它会在浏览器重新启动时保持不变。

在你的情况下,事情很简单

localStorage["mytimer"] = JSON.stringify([hrs, mins, secs]);

应该用于存储,你可以做

var previousTime = JSON.parse(localStorage["mytimer"]);

检索以前的值。

你可以在这里阅读更多关于它的信息:http: //diveintohtml5.info/storage.html

于 2012-10-31T08:05:03.933 回答