各位開發者大家好!今天,我很高興分享我最近完成的一個項目:擲骰子模擬器。該專案是一種有趣的互動式方式來模擬擲骰子,使其成為練習 JavaScript 的好方法,特別是在 DOM 操作和事件處理領域。無論您是想建立一些有趣的東西還是需要一個簡單的擲骰子功能的遊戲,這個項目都是一個完美的開始。
骰子模擬器允許使用者只需點擊按鈕即可模擬六面骰子的滾動。結果以視覺上吸引人的方式顯示,模仿真實骰子的外觀。該專案非常適合想要在使用動畫和事件偵聽器時提高建立互動式 Web 應用程式技能的開發人員。
以下是專案結構的快速瀏覽:
Dice-Roll-Simulator/ ├── index.html ├── style.css └── script.js
要開始該項目,請按照以下步驟操作:
複製儲存庫:
git clone https://github.com/abhishekgurjar-in/Dice-Roll-Simulator.git
開啟專案目錄:
cd Dice-Roll-Simulator
運行項目:
index.html 檔案包含網頁的結構,包括骰子顯示、捲動按鈕和捲動歷史清單。以下是 HTML 程式碼片段:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Dice Roll Simulator</title> <script src="script.js" defer></script> <link rel="stylesheet" href="style.css" /> </head> <body> <h1>Dice Roll Simulator</h1> <div class="dice" id="dice">⚄</div> <button id="roll-button">Roll Dice</button> <div class="roll-list"> <ul id="roll-history"></ul> </div> <div class="footer"> <p>Made With ❤️ by Abhishek Gurjar</p> </div> </body> </html>
style.css 檔案包含確保網頁具有視覺吸引力的樣式,並包含擲骰子的動畫。以下是一些關鍵樣式:
body { font-family: "Open Sans", sans-serif; text-align: center; margin: 0; } h1 { font-size: 3rem; margin-top: 2rem; } .dice { font-size: 7rem; margin: 5px; animation-duration: 1s; animation-fill-mode: forwards; } .roll-animation { animation-name: roll; } @keyframes roll { 0% { transform: rotateY(0deg) rotateX(0deg); } 100% { transform: rotateY(720deg) rotateX(720deg); } } button { background-color: #47a5c4; color: white; font-size: 1.5rem; padding: 1rem 2rem; border: none; border-radius: 1rem; cursor: pointer; transition: background-color 0.3s ease; } button:hover { background-color: #2e8baf; } .roll-list { min-height: 270px; } ul { list-style: none; padding: 0; max-width: 600px; margin: 2rem auto; } li { font-size: 1.5rem; padding: 0.5rem; margin: 0.5rem; background-color: #f2f2f2; border-radius: 0.5rem; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); display: flex; justify-content: space-between; align-items: center; } li span { font-size: 3rem; margin-right: 1rem; } .footer { margin: 50px; }
script.js 檔案管理擲骰子邏輯、更新擲骰子歷史記錄並處理擲骰子動畫。以下是 JavaScript 程式碼片段:
const buttonEl = document.getElementById("roll-button"); const diceEl = document.getElementById("dice"); const rollHistoryEl = document.getElementById("roll-history"); let historyList = []; function rollDice() { const rollResult = Math.floor(Math.random() * 6) + 1; const diceFace = getDiceFace(rollResult); diceEl.innerHTML = diceFace; historyList.push(rollResult); updateRollHistory(); } function updateRollHistory() { rollHistoryEl.innerHTML = ""; for (let i = 0; i < historyList.length; i++) { const listItem = document.createElement("li"); listItem.innerHTML = `Roll ${i + 1}: <span>${getDiceFace(historyList[i])}</span>`; rollHistoryEl.appendChild(listItem); } } function getDiceFace(rollResult) { switch (rollResult) { case 1: return "⚀"; case 2: return "⚁"; case 3: return "⚂"; case 4: return "⚃"; case 5: return "⚄"; case 6: return "⚅"; default: return ""; } } buttonEl.addEventListener("click", () => { diceEl.classList.add("roll-animation"); setTimeout(() => { diceEl.classList.remove("roll-animation"); rollDice(); }, 1000); });
您可以在此處查看擲骰子模擬器的現場演示。
建立這個擲骰子模擬器是一次有趣且有益的體驗,它讓我能夠嘗試 JavaScript 動畫和 DOM 操作。我希望這個專案能夠激勵您創建自己的互動式應用程式。請隨意探索程式碼、對其進行自訂並在您自己的專案中使用它。快樂編碼!
這個項目的靈感來自於對簡單且互動的擲骰子工具的需求。
以上是建構一個擲骰子模擬器網站的詳細內容。更多資訊請關注PHP中文網其他相關文章!