最简单的JavaScript倒数计时器?[关闭]


240

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

该网站上会有一句话:

“注册将在05:00分钟后关闭!”

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

之前我一直在回答一些问题,但是对于我想做的事情,它们似乎都太过激烈了(日期对象等)。


4
再一次,您将省略相关的HTML,尽管至少您这次已经解释了复杂性问题。但认真的说,您需要自己研究解决方案然后来问我们您遇到的问题。
大卫说恢复莫妮卡

带有抱怨的代码示例如何过于复杂?无论如何,我认为您可以轻松地setInterval使其基于.innerHTML而不是基于日期。
bjb568

1
是的,人们应该寻求自己制作解决方案。但是使用javaScript时,有很多执行常见任务的示例。我知道如何做倒数计时器,但是我更喜欢在网上找到一个(像组件一样)。因此,由于这个问题和广泛的答案,我找到了想要的东西。倒数计时逻辑
卡洛斯·拉斐尔·拉米雷斯

2
我发现这些解决方案是简单的:stackoverflow.com/questions/32141035/...
NU珠峰

Answers:


489

我有两个演示,一个带演示,一个不带演示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后重新启动的示例

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

一个示例,其中有两个不同的计时器,只有一个重新启动

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


2
你是男人!那正是我想要的。谢谢!还有一件事:如何在分钟前添加“ 0”,使其显示为“ 04:59”,而不是“ 4:59”?
Bartek

1
minutes = minutes < 10 ? "0" + minutes : minutes;
robbmj 2013年

8
@timbram起初我也觉得很奇怪,直到我意识到var声明后的逗号分隔了不同的声明。因此minutesseconds它们只是声明(但未初始化)的变量。所以timer只是等于duration参数,仅此而已,仅此而已。
abustamam

2
@SinanErdem我已经编写了一些实现此目的的代码。我可以在今天晚些时候将该代码添加到答案中。完成后,我将对您执行ping操作。
robbmj

3
如何添加重置选项?还有暂停和恢复?我尝试添加一个字段this.reset,并在关闭处进行检查。但是时钟一直在运转。
Dzung Nguyen

24

如果要使用真正的计时器,则需要使用date对象。

计算差异。

格式化您的字符串。

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


16

您可以使用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!


3
不能精确地表示每秒,它的倒计时太快了。
Scott Rowley

4
将500更改为1000似乎很准确。
Scott Rowley

灵活的解决方案,尽管应避免将小时数更改为分钟数,以免造成混淆
embulldogs99
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.