使用 Vanilla JavaScript 建立簡單的倒數計時器
在 Web 開發中,通常需要實作倒數計時器。雖然有各種解決方案,但初學者可能會發現它們過於複雜。本文示範如何使用普通實作在 JavaScript 中建立簡單的非 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.textContent = minutes + ":" + seconds; if (--timer < 0) { timer = duration; } }, 1000); } window.onload = function () { var fiveMinutes = 60 * 5, display = document.querySelector('#time'); startTimer(fiveMinutes, display); };
HTML:
<div>Registration closes in <span>此程式碼建立倒數計時器,每秒更新顯示元素的剩餘時間。當計時器到達 00:00 時,它會重設為 05:00。
以上是如何僅使用 Vanilla JavaScript 建立簡單的倒數計時器?的詳細內容。更多資訊請關注PHP中文網其他相關文章!