js 大转盘,老虎 机

js 大转盘,老虎 机

 
http://www.helloweba.com/view-blog-215.html
http://www.ui3g.com/demos/show/1408/
http://www.js-css.cn/a/jscode/award/2014/1230/1423.html
大转盘

http://www.js-css.cn/a/jscode/award/list_272_1.html
大转盘集合

http://www.html5cn.org/article-8927-1.html
https://github.com/JavoByte/rouletteWheel
canvas

http://www.js-css.cn/a/jscode/award/2015/0606/1484.html
HTML5微抽奖大转盘JS特效代码

老虎 机
https://github.com/TOP-Chao/lottery
https://github.com/perfey/laohuji
https://github.com/hehongwei44/raffle
类似老虎 机的抽奖插件
https://github.com/capqueen/Lottery
https://github.com/lingxuanmin/tiger-machine
老虎 机小游戏
https://github.com/leeenx/numberscroller
类似于老虎 机的数字滚动js组件
https://github.com/charlescui/slotmachine
年会老虎 机抽奖游戏页面
https://github.com/zhouxitian/slotMachines
抽奖插件(九宫格,直线,老虎 机)
https://github.com/huaable/slot-machine
任意组合型老虎

作者:王思明
出处:http://www.cnblogs.com/maanshancss/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,我可以为你提供一个简单的HTML、JS、CSS实现的抽奖大转盘。 首先,我们需要一个 HTML 页面来放置大转盘的内容。 ```html <!DOCTYPE html> <html> <head> <title>抽奖大转盘</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="container"> <div class="wheel"> <div class="section"> <div class="content">1</div> </div> <div class="section"> <div class="content">2</div> </div> <div class="section"> <div class="content">3</div> </div> <div class="section"> <div class="content">4</div> </div> <div class="section"> <div class="content">5</div> </div> <div class="section"> <div class="content">6</div> </div> <div class="section"> <div class="content">7</div> </div> <div class="section"> <div class="content">8</div> </div> </div> <button class="spin" onClick="spin()">开始抽奖</button> </div> <script type="text/javascript" src="script.js"></script> </body> </html> ``` 接下来,我们需要一个 CSS 文件来设置大转盘的样式。 ```css .container { display: flex; flex-direction: column; align-items: center; } .wheel { position: relative; width: 400px; height: 400px; border-radius: 50%; background: url("https://cdn.pixabay.com/photo/2015/09/23/09/22/background-952755_960_720.jpg") no-repeat center center / cover; overflow: hidden; } .section { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform-origin: 50% 100%; } .section:nth-child(1) { transform: rotate(0deg); } .section:nth-child(2) { transform: rotate(45deg); } .section:nth-child(3) { transform: rotate(90deg); } .section:nth-child(4) { transform: rotate(135deg); } .section:nth-child(5) { transform: rotate(180deg); } .section:nth-child(6) { transform: rotate(225deg); } .section:nth-child(7) { transform: rotate(270deg); } .section:nth-child(8) { transform: rotate(315deg); } .content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; border-radius: 50%; background-color: #fff; display: flex; justify-content: center; align-items: center; font-size: 36px; font-weight: bold; } .spin { margin-top: 30px; padding: 10px 20px; border: none; border-radius: 5px; background-color: #f44336; color: #fff; font-size: 24px; cursor: pointer; } .spin:active { background-color: #e53935; } ``` 最后,我们需要一个 JS 文件来实现大转盘的旋转效果。 ```javascript var wheel = document.querySelector(".wheel"); var button = document.querySelector(".spin"); var sections = wheel.children; var deg = 0; function spin() { button.style.pointerEvents = "none"; deg = Math.floor(5000 + Math.random() * 5000); wheel.style.transition = "all 10s ease-out"; wheel.style.transform = "rotate(" + deg + "deg)"; wheel.addEventListener("transitionend", function() { button.style.pointerEvents = "auto"; wheel.style.transition = "none"; var actualDeg = deg % 360; sections[Math.floor(actualDeg / 45)].classList.add("winner"); alert("恭喜获得第" + (Math.floor(actualDeg / 45) + 1) + "个奖品!"); }); } function reset() { for (var i = 0; i < sections.length; i++) { sections[i].classList.remove("winner"); } } ``` 这样,一个简单的 HTML、JS、CSS 实现的抽奖大转盘就完成了。你可以在浏览器中打开 HTML 文件,点击“开始抽奖”按钮来进行抽奖。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值