如何在 JavaScript 中编写倒数计时器?

IT技术 javascript timer countdown countdowntimer
2021-01-11 13:13:49

只是想问如何创建最简单的倒数计时器。

网站上会有一句话说:

“05:00 后报名截止!”

所以,我想要做的是创建一个简单的 js 倒数计时器,它从“05:00”到“00:00”,然后在结束后重置为“05:00”。

我之前浏览过一些答案,但对于我想要做的事情来说,它们似乎都太紧张了(Date 对象等)。

3个回答

我有两个演示,一个有jQuery一个没有。既不使用日期函数,也尽可能简单。

使用原生 JavaScript 进行演示

function startTimer(duration, display) {
    var timer = duration, minutes, seconds;
    setInterval(function () {
        minutes = parseInt(timer / 60, 10);
        seconds = parseInt(timer % 60, 10);

        minutes = minutes < 10 ? "0" + minutes : minutes;
        seconds = seconds < 10 ? "0" + seconds : seconds;

        display.textContent = minutes + ":" + seconds;

        if (--timer < 0) {
            timer = duration;
        }
    }, 1000);
}

window.onload = function () {
    var fiveMinutes = 60 * 5,
        display = document.querySelector('#time');
    startTimer(fiveMinutes, display);
};
<body>
    <div>Registration closes in <span id="time">05:00</span> minutes!</div>
</body>

用 jQuery 演示

function startTimer(duration, display) {
    var timer = duration, minutes, seconds;
    setInterval(function () {
        minutes = parseInt(timer / 60, 10);
        seconds = parseInt(timer % 60, 10);

        minutes = minutes < 10 ? "0" + minutes : minutes;
        seconds = seconds < 10 ? "0" + seconds : seconds;

        display.text(minutes + ":" + seconds);

        if (--timer < 0) {
            timer = duration;
        }
    }, 1000);
}

jQuery(function ($) {
    var fiveMinutes = 60 * 5,
        display = $('#time');
    startTimer(fiveMinutes, display);
});

但是,如果您想要一个更准确但稍微复杂一点的计时器:

function startTimer(duration, display) {
    var start = Date.now(),
        diff,
        minutes,
        seconds;
    function timer() {
        // get the number of seconds that have elapsed since 
        // startTimer() was called
        diff = duration - (((Date.now() - start) / 1000) | 0);

        // does the same job as parseInt truncates the float
        minutes = (diff / 60) | 0;
        seconds = (diff % 60) | 0;

        minutes = minutes < 10 ? "0" + minutes : minutes;
        seconds = seconds < 10 ? "0" + seconds : seconds;

        display.textContent = minutes + ":" + seconds; 

        if (diff <= 0) {
            // add one second so that the count down starts at the full duration
            // example 05:00 not 04:59
            start = Date.now() + 1000;
        }
    };
    // we don't want to wait a full second before the timer starts
    timer();
    setInterval(timer, 1000);
}

window.onload = function () {
    var fiveMinutes = 60 * 5,
        display = document.querySelector('#time');
    startTimer(fiveMinutes, display);
};
<body>
    <div>Registration closes in <span id="time"></span> minutes!</div>
</body>

现在我们已经制作了一些非常简单的计时器,我们可以开始考虑可重用性和分离关注点。我们可以通过问“倒数计时器应该做什么?”来做到这一点。

  • 倒数计时器应该倒计时吗?是的
  • 倒数计时器应该知道如何在 DOM 上显示自己吗?
  • 倒数计时器是否应该知道在达到 0 时重新启动?
  • 倒数计时器是否应该为客户提供一种访问剩余时间的方法?是的

所以考虑到这些事情,让我们写一个更好的(但仍然很简单) CountDownTimer

function CountDownTimer(duration, granularity) {
  this.duration = duration;
  this.granularity = granularity || 1000;
  this.tickFtns = [];
  this.running = false;
}

CountDownTimer.prototype.start = function() {
  if (this.running) {
    return;
  }
  this.running = true;
  var start = Date.now(),
      that = this,
      diff, obj;

  (function timer() {
    diff = that.duration - (((Date.now() - start) / 1000) | 0);

    if (diff > 0) {
      setTimeout(timer, that.granularity);
    } else {
      diff = 0;
      that.running = false;
    }

    obj = CountDownTimer.parse(diff);
    that.tickFtns.forEach(function(ftn) {
      ftn.call(this, obj.minutes, obj.seconds);
    }, that);
  }());
};

CountDownTimer.prototype.onTick = function(ftn) {
  if (typeof ftn === 'function') {
    this.tickFtns.push(ftn);
  }
  return this;
};

CountDownTimer.prototype.expired = function() {
  return !this.running;
};

CountDownTimer.parse = function(seconds) {
  return {
    'minutes': (seconds / 60) | 0,
    'seconds': (seconds % 60) | 0
  };
};

那么为什么这个实现比其他实现更好呢?以下是您可以使用它做什么的一些示例。请注意,除了第一个示例之外的所有startTimer功能都无法通过功能实现

以 XX:XX 格式显示时间并在到达 00:00 后重新启动的示例

以两种不同格式显示时间的示例

有两个不同的计时器并且只有一个重新启动的示例

按下按钮时启动倒数计时器的示例

如何添加重置选项?还有暂停和恢复?我尝试添加一个字段 this.reset,并在闭包中检查它。但时钟仍在继续。
2021-03-10 13:13:49
你就是那个人!这正是我正在寻找的。谢谢!还有一件事:如何在分钟前添加“0”,以便显示“04:59”,而不是“4:59”?
2021-03-14 13:13:49
@timbram 起初对我来说也很奇怪,直到我意识到var声明后的逗号分隔不同的声明。sominutesseconds只是简单声明(但未初始化)的变量。sotimer只是等于duration参数,仅此而已。
2021-03-28 13:13:49
@SinanErdem 我写了一些代码来做到这一点。我可以在今天晚些时候将该代码添加到答案中。完成后我会ping你。
2021-03-28 13:13:49
minutes = minutes < 10 ? "0" + minutes : minutes;
2021-04-05 13:13:49

如果你想要一个真正的计时器,你需要使用日期对象。

计算差异。

格式化你的字符串。

window.onload=function(){
      var start=Date.now(),r=document.getElementById('r');
      (function f(){
      var diff=Date.now()-start,ns=(((3e5-diff)/1e3)>>0),m=(ns/60)>>0,s=ns-m*60;
      r.textContent="Registration closes in "+m+':'+((''+s).length>1?'':'0')+s;
      if(diff>3e5){
         start=Date.now()
      }
      setTimeout(f,1e3);
      })();
}

例子

提琴手

不是那么精确的计时器

var time=5*60,r=document.getElementById('r'),tmp=time;

setInterval(function(){
    var c=tmp--,m=(c/60)>>0,s=(c-m*60)+'';
    r.textContent='Registration closes in '+m+':'+(s.length>1?'':'0')+s
    tmp!=0||(tmp=time);
},1000);

JsFiddle

您可以使用 setInterval 轻松创建计时器功能。以下是您可以使用它来创建计时器的代码。

http://jsfiddle.net/ayyadurai/GXzhZ/1/

window.onload = function() {
  var minute = 5;
  var sec = 60;
  setInterval(function() {
    document.getElementById("timer").innerHTML = minute + " : " + sec;
    sec--;
    if (sec == 00) {
      minute --;
      sec = 60;
      if (minute == 0) {
        minute = 5;
      }
    }
  }, 1000);
}
Registration closes in <span id="timer">05:00<span> minutes!

将 500 更改为 1000 似乎使其准确。
2021-03-14 13:13:49
不能准确表示每一秒,倒计时太快了。
2021-03-18 13:13:49
巧妙的解决方案,但应将小时更改为分钟以避免混淆
2021-04-05 13:13:49