各位开发者大家好!今天,我很高兴分享我最近完成的一个项目:掷骰子模拟器。该项目是一种有趣的交互式方式来模拟掷骰子,使其成为练习 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中文网其他相关文章!