可能な限り最も単純なカウントダウンタイマーの作り方を尋ねたかっただけです。
サイト上に次のような文があります。
"登録は05:00分で終了します!"
だから、私がやりたいのは、 "05:00"から "00:00"まで進み、終了したら "05:00"にリセットする単純なjsカウントダウンタイマーを作成することです。
私は前にいくつかの答えを経験しましたが、私がやりたいことのためにそれらすべてはあまりにも強すぎるように見えます(Dateオブジェクトなど)。
私は2つのデモを持っています。1つはjQuery
あり、もう1つはありません。どちらも日付関数を使用しないで、それが得るのと同じくらい簡単です。
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>
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>
これで、ごく簡単なタイマーをいくつか作成したので、再利用性と懸念の分離について考え始めることができます。これを行うには、「カウントダウンタイマーはどうすればよいですか」と尋ねます。
したがって、これらのことを念頭に置いて、より良い(ただしまだ非常に単純な)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
関数では達成できないことに注意してください。
あなたが本当のタイマーが欲しいならば、日付オブジェクトを使う必要があります。
差を計算します。
文字列をフォーマットします。
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);
SetIntervalを使用すると、タイマー機能を簡単に作成できます。次のコードは、タイマーを作成するために使用できるコードです。
http://jsfiddle.net/ayyadurai/GXzhZ/1/ /
window.onload = function() {
var hour = 2;
var sec = 60;
setInterval(function() {
document.getElementById("timer").innerHTML = hour + " : " + sec;
sec--;
if (sec == 00) {
hour--;
sec = 60;
if (hour == 0) {
hour = 2;
}
}
}, 1000);
}
Registration closes in <span id="timer">05:00<span> minutes!