1. ホーム
  2. ジャバスクリプト

[解決済み】JavaScriptでカウントダウンタイマーを書くには?[クローズド]

2022-03-30 14:20:11

質問

最もシンプルなカウントダウンタイマーを作成する方法をお聞きしたいのです。

という文章が載りますよ。

<ブロッククオート

"受付終了は05:00分です!"

そこで、私がやりたいことは、"05:00" から "00:00" まで進み、終了すると "05:00" にリセットされるシンプルな js カウントダウン タイマーを作成することです。

以前、いくつかの回答を見ていたのですが、どれも私がやりたい事には強烈すぎる(Dateオブジェクトなど)ようです。

どのように解決するのですか?

2つのデモがあり、1つは 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つの異なるフォーマットで時刻を表示する例

2種類のタイマーを持ち、片方だけが再起動する例

ボタンが押されるとカウントダウンを開始する例