開發者們大家好!我很高興向大家介紹我的最新項目:番茄計時器。該專案非常適合任何想要提高時間管理技能或練習前端開發的人。番茄計時器是一款簡單但功能強大的工具,旨在幫助您將工作分成幾個有重點的時間間隔,提高工作效率並保持全天的專注。
番茄計時器是一款基於網路的應用程序,允許用戶為集中工作設定計時器,通常為 25 分鐘,然後進行短暫休息。這個專案示範如何使用 JavaScript 建立功能計時器,以及使用 HTML 和 CSS 建立乾淨且響應靈敏的使用者介面。
以下是項目結構的概述:
Pomodoro-Timer/ ├── index.html ├── style.css └── script.js
要開始該項目,請按照以下步驟操作:
複製儲存庫:
git clone https://github.com/abhishekgurjar-in/Pomodoro-Timer.git
開啟專案目錄:
cd Pomodoro-Timer
運行項目:
index.html 檔案定義了番茄計時器的結構,包括標題、計時器顯示和控制按鈕。這是一個片段:
8b05045a5be5764f313ed5b9168a17e6 49099650ebdc5f3125501fa170048923 93f0f5c25f18dab9d176bd4f6de5d30e 7c8d9f814bcad6a1d7abe4eda5f773e5 26faf3d1af674280d03ba217d87e9421 b2386ffb911b14667cb8f0f91ea547a7Pomodoro Timer6e916e0f7d1e588d4f442bf645aedb2f af75c476cdb7e6c074ca6da9b40841de 90392ec4442ad9ff612213ec639da4832cacc6d41bbb37262a98f745aa00fbf0 9c3bca370b5104690d9ef395f2c5f8d1 6c04bd5ca3fcae76e30b72ad730ca86d 4883ec0eb33c31828b7c767c806e14c7 527db218a609cb4e96157e28dc6f988cPomodoro Timer473f0a7621bec819994bb5020d29372a 38e8f75036b4e9396a1cc6cc0591514e25:0094b3e26ee717c64999d7867364b1b4a3 60842b9d6c79533b42cd0c6cd7485212 443c620cf48a4716b774dd4364035d74Start65281c5ac262bf6d81768915a4a77ac0 a7a60cea450f42b2b97b16a5d74b9609Stop65281c5ac262bf6d81768915a4a77ac0 2da760dc65e610b23ad3e603d5b03982Reset65281c5ac262bf6d81768915a4a77ac0 16b28748ea4df4d9c2150843fecfba68 16b28748ea4df4d9c2150843fecfba68 ffd6ba4147bda351239915f463e46e38 e388a4556c0f65e1904146cc1a846beeMade with ❤️ by Abhishek Gurjar94b3e26ee717c64999d7867364b1b4a3 16b28748ea4df4d9c2150843fecfba68 36cc49f0c466276486e50c850b7e4956 73a6ac4ed44ffec12cee46588e518a5e
style.css 檔案設定番茄計時器的樣式,確保其具有視覺吸引力和反應能力。以下是一些關鍵樣式:
.container { margin: 0 auto; max-width: 400px; text-align: center; padding: 20px; font-family: "Roboto", sans-serif; } .title { font-size: 36px; margin-bottom: 10px; color: #2c3e50; } .timer { font-size: 72px; color: #2c3e50; } button { font-size: 18px; padding: 10px 20px; margin: 10px; color: white; border: none; border-radius: 4px; cursor: pointer; text-transform: uppercase; transition: opacity 0.3s ease-in-out; } button:hover { opacity: 0.7; } #start { background-color: #27ae60; } #stop { background-color: #c0392b; } #reset { background-color: #7f8c8d; } .footer { margin-top: 250px; text-align: center; }
script.js 檔案包含番茄計時器的邏輯,包括倒數機制和處理使用者互動。這是一個片段:
const startEl = document.getElementById("start"); const stopEl = document.getElementById("stop"); const resetEl = document.getElementById("reset"); const timerEl = document.getElementById("timer"); let interval; let timeLeft = 1500; function updateTimer() { let minutes = Math.floor(timeLeft / 60); let seconds = timeLeft % 60; let formattedTime = `${minutes.toString().padStart(2, "0")}:${seconds .toString() .padStart(2, "0")}`; timerEl.innerHTML = formattedTime; } function startTimer() { interval = setInterval(() => { timeLeft--; updateTimer(); if (timeLeft === 0) { clearInterval(interval); alert("Time's up!"); timeLeft = 1500; updateTimer(); } }, 1000); } function stopTimer() { clearInterval(interval); } function resetTimer() { clearInterval(interval); timeLeft = 1500; updateTimer(); } startEl.addEventListener("click", startTimer); stopEl.addEventListener("click", stopTimer); resetEl.addEventListener("click", resetTimer);
您可以在此處查看番茄計時器專案的現場演示。
建立番茄計時器是一次有益的經歷,它讓我練習了基本的前端技能,例如 HTML、CSS 和 JavaScript。這個專案是提高生產力的一個很好的工具,我希望它能激勵您創建自己的工具以更好地管理時間。快樂編碼!
這個專案是我在前端開發方面持續學習之旅的一部分,重點是創建實用且互動的 Web 應用程式。
以上是建立一個番茄計時器網站的詳細內容。更多資訊請關注PHP中文網其他相關文章!