最近在研究uni-app,制作了一个很有意思的集合项目demo,这里给大家分享下大转盘的前端设计思路
需求案例:大转盘抽奖
线上demo查看:
案例效果:
制作思路:
前端大转盘使用css3动画来做,在开始做的时候,我思路上碰到一个问题,抽奖结果是我前端给后台还是后台给我,最后我发现,只有后台传结果给前台才能实现代码的数据闭环,那么按照这个思路,前端需要处理的只是对后台返回的接口来对前端进行数据处理和特效展示。
主要代码:
data部分:
return {
imgUrl: app.appImg,
url: app.url,
indicator: false,
autoplay: true,
interval: 2000,
duration: 500,
dianimage: 0,
bgtimer: null,
domearr: [
{
title:'现金大奖',
id:1,
img:'#'
},
{
title:'积分大奖',
id:2,
img:'#'
},
{
title:'优惠券大奖',
id:3,
img:'#'
},
{
title:'赠品手机',
id:4,
img:'#'
},
{
title:'谢谢惠顾',
id:0,
img:'#'
},
{
title:'谢谢惠顾',
id:0,
img:'#'
},
{
title:'谢谢惠顾',
id:0,
img:'#'
},
{
title:'谢谢惠顾',
id:0,
img:'#'
}
],
swiperarr: [{
title:'恭喜 樱桃小丸子 抽到88元现金红包'
},
{
title:'恭喜 用户aaa 抽到77元现金红包'
}
],
mainname: 'kai',
endname: 't',
frequency:5,
mainbind :false
}
抽奖代码方法部分:
btnFun(){
var that = this;
if(that.mainbind == false){
if(that.frequency == 0){
uni.showToast({
title: '你已无抽奖次数',
icon:"none",
duration: 2000
});
}else{
that.mainbind = true;
that.mainname = 'kai';
that.endname = 't';
var index = parseInt(Math.random() * 8);
that.mainname = 'kai'+(index+1);
setTimeout(()=>{
that.endname = 't'+(index+1);
that.frequency = that.frequency - 1;
if(that.domearr[index].id == 0){
uni.showModal({
title: '没有中奖,请再接再厉!',
content: '谢谢惠顾',
success: function (res) {
that.mainbind = false;
if (res.confirm) {
console.log('用户点击确定');
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
}else{
uni.showModal({
title: '恭喜你中奖了!',
content: that.domearr[index].title,
success: function (res) {
that.mainbind = false;
if (res.confirm) {
console.log('用户点击确定');
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
}
},3900);
}
}else{
uni.showToast({
title: '请不要多次点击',
icon:"none",
duration: 2000
});
}
}
如果想要全部代码,欢迎和我联系获取demo源码,希望这个思路对你有所帮助,一起进步。