各位开发者大家好!今天,我很高兴与大家分享我最近从事的一个有趣而简单的项目:建议生成器网站。该项目从外部 API 获取随机建议并将其显示在网页上。这是练习使用 API 和构建交互式 Web 应用程序的好方法。
建议生成器网站是一个简单的应用程序,用户只需单击按钮即可获得随机建议。它使用 Advice Slip API 获取建议并将其显示在网页上。
以下是项目结构的快速浏览:
Advice-Generator/ ├── index.html ├── style.css └── script.js
要开始该项目,请按照以下步骤操作:
克隆存储库:
git clone https://github.com/abhishekgurjar-in/Advice-Generator.git
打开项目目录:
cd Advice-Generator
运行项目:
HTML 文件包含网页的基本结构,包括获取建议的按钮和显示建议的部分。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Advice Generator</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <h1>Advice Generator</h1> <p id="advice">Click the button to get a piece of advice!</p> <button id="adviceBtn">Get Advice</button> </div> <script src="script.js"></script> </body> </html>
CSS 文件对网页进行样式设计,使其具有视觉吸引力。
body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f0f0f0; } .container { text-align: center; background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } button { padding: 10px 20px; font-size: 16px; cursor: pointer; background-color: #007BFF; color: #fff; border: none; border-radius: 5px; margin-top: 20px; } button:hover { background-color: #0056b3; }
JavaScript 文件从 API 获取建议并更新 DOM。
document.getElementById('adviceBtn').addEventListener('click', fetchAdvice); function fetchAdvice() { fetch('https://api.adviceslip.com/advice') .then(response => response.json()) .then(data => { document.getElementById('advice').innerText = `Advice #${data.slip.id}: ${data.slip.advice}`; }) .catch(error => { console.error('Error fetching advice:', error); }); }
您可以在此处查看建议生成器网站的现场演示。
构建建议生成器网站是一次有趣且具有教育意义的体验。它帮助我练习使用 API 和构建交互式 Web 应用程序。我希望您能像我一样觉得这个项目既有趣又信息丰富。请随意克隆存储库并使用代码。快乐编码!
以上是建立建议生成器网站的详细内容。更多信息请关注PHP中文网其他相关文章!