时间:2021-07-01 10:21:17 帮助过:2人阅读
要求实现功能:
1.点击左侧按键,开始抽奖,点击右侧按键,停止抽奖;
2.敲击回车键,开始抽奖,再次敲击回车键,停止抽奖;
3.开始抽奖后,左侧按钮变色;
html:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>抽奖</title> <link rel="stylesheet" href="style.css"> <script src="eventUtil.js"></script> <script src="js.js"></script> </head> <body> <p class="box"> <p id="header">开始抽奖啦!</p> <p id="btn"> <span id="start">开始</span> <span id="stop">结束</span> </p> </p> </body> </html>
css:
body{ margin: 0; padding: 0; } .box{ width: 400px; height: 200px; border: 1px solid #0C4E7C; margin: 0 auto; } #header{ color:darkred; font-size: 24px; text-align: center; width: 400px; height: 60px; line-height: 60px; } #btn{ width: 200px; overflow: hidden; margin: 30px auto 0; } #btn span{ cursor: pointer; border: 2px solid #a09a09; border-radius: 7px; margin-right: 10px; color: #000; display: inline-block; height: 40px; width: 80px; background-color: #f2ec55; line-height: 40px; text-align: center; }
JavaScript:
eventUtil.js
相关推荐:
php实现抽奖概率算法代码
JavaScript实现抽奖系统实例分享
jQuery实现简单的抽奖游戏技术分享
以上就是js实现抽奖系统功能代码分享的详细内容,更多请关注Gxl网其它相关文章!