上一篇
html如何制作点赞
- 行业动态
- 2024-03-31
- 3423
要制作一个点赞按钮,你可以使用HTML和CSS,以下是一个简单的示例:
1、创建一个HTML文件,例如like.html,并添加以下内容:
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF8"> <meta name="viewport" content="width=devicewidth, initialscale=1.0"> <title>点赞按钮</title> <style> /* 在这里添加CSS样式 */ </style> </head> <body> <h1>点赞按钮示例</h1> <table border="1"> <tr> <th>标题</th> <th>内容</th> </tr> <tr> <td>点赞按钮</td> <td>点击下方的按钮进行点赞</td> </tr> </table> <button id="likeBtn">点赞</button> <p id="likeCount">0</p> <script> // 在这里添加JavaScript代码 </script> </body> </html>
2、接下来,在<style>标签内添加CSS样式,
button { backgroundcolor: #4CAF50; border: none; color: white; padding: 15px 32px; textalign: center; textdecoration: none; display: inlineblock; fontsize: 16px; margin: 4px 2px; cursor: pointer; }
3、在<script>标签内添加JavaScript代码,
let likeCount = 0; const likeBtn = document.getElementById('likeBtn'); const likeCountElement = document.getElementById('likeCount'); likeBtn.addEventListener('click', () => { likeCount++; likeCountElement.innerText = likeCount; });
现在,当你打开like.html文件时,你将看到一个带有点赞按钮的页面,点击按钮,点赞数将增加。
本站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本站,有问题联系侵删!
本文链接:http://www.xixizhuji.com/fuzhu/304096.html