时间:2021-05-18
本文实例为大家分享了微信小程序实现转盘抽奖的具体代码,供大家参考,具体内容如下
效果图如下所示
.wxml
<view class="index"> <view class="xian"></view> <view class="xian"></view> <view class="xian"></view> <view class="detail">一等奖</view> <view class="detail">二等奖</view> <view class="detail">三等奖</view> <view class="detail">四等奖</view> <view class="detail">五等奖</view> <view class="detail">六等奖</view> <span bindtap="zhuanin" style="transform:rotate({{trasn}}deg);"></span></view>.wxss
.index{ width: 300px; margin: 50rpx calc((100% - 300px) / 2); border:1px solid #ffcccc; border-radius: 50%; height: 300px; position: relative; overflow: hidden; font-size: 26rpx;}.xian{ width:300px; height:1px; background:#d6d6d6; position:absolute; top:150px; left:0;}.index>.xian:nth-child(2){ transform:rotateZ(60deg)}.index>.xian:nth-child(3){ transform:rotateZ(120deg)}.detail{ position: absolute;}.index>.detail:nth-child(4){ top:25px;left:132px;}.index>.detail:nth-child(5){ top:90px;left:225px;}.index>.detail:nth-child(6){ top:190px;left:225px;}.index>.detail:nth-child(7){ top:250px;left:132px;}.index>.detail:nth-child(8){ top:190px;left:40px;}.index>.detail:nth-child(9){ top:90px;left:40px;}.index>span{ width: 30px; height: 30px; background-color: #ffcccc; border-radius: 50%; position: absolute; left: 135px; top:135px;}.index>span::after{ content: ' '; width:0; height:0; border-right:6px solid transparent; border-left:6px solid transparent; border-bottom:26px solid #ffcccc; z-index: 10; position: absolute; left: 8.5px; top: -24px;}.js
Page({ data: { random:'', trasn:0, }, zhuanin:function(e){ let that = this let num = 0 that.setData({ random:Math.floor(Math.random() * 360), trasn:0, }) let a = setInterval(function () { that.setData({ trasn:that.data.trasn+5 }) if(360 <= that.data.trasn){ that.data.trasn = 0 num = num + 1 } if(num == 3){ that.currinl() clearInterval(a) } },5) }, currinl:function(e){ let that = this let name = '' if(that.data.random == 30 || that.data.random == 90 || that.data.random == 150 || that.data.random == 210 || that.data.random == 330){ that.setData({ random:that.data.random + 1 }) } if(that.data.random < 30 || 330 < that.data.random){ name = '一等奖' }else if(that.data.random > 30 && that.data.random < 90){ name = '二等奖' }else if(that.data.random > 90 && that.data.random < 150){ name = '三等奖' }else if(that.data.random > 150 && that.data.random < 210){ name = '四等奖' }else if(that.data.random > 210 && that.data.random < 270){ name = "五等奖" }else{ name = "六等奖" } let b = setInterval(function () { that.setData({ trasn:that.data.trasn+2 }) if(that.data.random <= that.data.trasn){ wx.showToast({ title: name, icon: 'none', duration: 2000 }) clearInterval(b) } },10) },})为大家推荐现在关注度比较高的微信小程序教程一篇:《微信小程序开发教程》小编为大家精心整理的,希望喜欢。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
源于前段时候微信小程序最初火爆公测时段,把以前用Canvas实现的大转盘抽奖移植成微信小程序,无奈当时小程序对Canvas支持不够完善,只好降低用CSS3实现。
微信公众号的服务号和订阅号都可以制作,微信抽奖有多种,有大转盘、砸金蛋、摇一摇抽奖等,商家可以利用这些抽奖活动吸引粉丝互动,那么微信公众平台大转盘、砸金蛋、摇一
用jquery实现抽奖小程序这些日子,到处都可以看到关于微信小程序的新闻或报到,在博客园中写关于微信小程序的也不少。但是今天我要说的不是微信小程序,而是用简单的
微信公众号分为订阅号和服务号,我们会发现一些公众号有抽奖、会员卡、刮刮卡等功能,非常有趣,那么微信公众平台刮刮卡、大转盘等功能如何实现?接下来小编就手把手教你怎
很多微信公众号都会有抽奖活动,想要给自己的公众号添加大转盘抽奖活动的链接,希望可以帮助大家在微信公众号中举办起抽奖活动,活跃起自己的粉丝,该怎么添加呢?下面我们