微信php喝酒转盘小程序,微信小程序 转盘

2023-10-10 00:30
文章标签 程序 微信 php 转盘 喝酒

本文主要是介绍微信php喝酒转盘小程序,微信小程序 转盘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

c59da2b9553d

1.html

{{item.award}}

抽奖

2.css

/* 转盘 */

.canvas-container ul,

.canvas-container li{

margin: 0 ;

padding: 0;

list-style: none;

}

.canvas-container{

margin: 0 auto;

position: relative;

width: 300px;

height: 300px;

border-radius: 50%;

border: 2px solid #E44025;

box-shadow: 0 2px 3px #333,0 0 2px #000;

}

.canvas-content{

position: absolute;

left: 0;

top: 0;

z-index: 1;

display: block;

width: inherit;

height: inherit;

border-radius: inherit;

background-clip: padding-box;

background-color: #ffcb3f;

}

.canvas-element{

width: inherit;

height: inherit;

border-radius: 50%;

}

.canvas-list{

position: absolute;

left: 0;

top: 0;

width: inherit;

height: inherit;

z-index: 2;

}

.canvas-item{

position: absolute;

left: 0;

top: 0;

width: 100%;

height: 100%;

color: #e4370e;

font-weight: bold;

text-shadow: 0 1px 1px rgba(255,255,255,.6);

}

.canvas-item-text{

position: relative;

display: block;

padding-top: 20px;

/* width: 50px; */

margin: 0 auto;

text-align: center;

-webkit-transform-origin: 50% 150px;

transform-origin: 50% 150px;

}

.canvas-btn{

position: absolute;

left: 110px;

top: 110px;

z-index: 3;

width: 80px;

height: 80px;

border-radius: 50%;

color: #F4E9CC;

background-color: #E44025;

line-height: 80px;

text-align: center;

font-size: 20px;

text-shadow: 0 -1px 1px rgba(0,0,0,.6);

box-shadow: 0 3px 5px rgba(0,0,0,.6);

text-decoration: none;

}

.canvas-btn::after{

position: absolute;

display: block;

content: ' ';

left: 10px;

top: -46px;

width: 0;

height: 0;

overflow: hidden;

border-width: 30px;

border-style: solid;

border-color: transparent;

border-bottom-color: #E44025;

}

.canvas-btn.disabled{

pointer-events: none;

background: #B07A7B;

color: #ccc;

}

.canvas-btn.disabled::after{

border-bottom-color: #B07A7B;

}

.gb-run{

-webkit-transition: all 6s ease;

transition: all 6s ease;

}

/* 查看中奖 */

.main-container{

margin: 1rem 2rem;

}

.main-container-rule{

padding: 1rem 0;

}

.main-rule-title{

display: block;

padding: 4px 0;

font-size: 16px;

font-weight: bold;

}

.main-rule-item{

display: block;

padding: 2px 0;

}

.main-container-btn{

display: flex;

justify-content: center;

}

3.js

data: {

awardsList: {},

animationData: {},

btnDisabled: '',

awards:[],

prob:[],

}

c59da2b9553d

图1

c59da2b9553d

图2

onReady: function (e) {

var that = this;

// 获取数据,如图1,

app.util.request({

url: xxxxxxxxxx",

cachetime: "0",

data: {},

success: function(n) {

// 把获取出来的概率数据循环复制一份到prob,概率数据保持整数,如图2

let prob=[];

for(let i=0;i

if (n.data.data[i].prob!=0) {

for(let k=0;k

prob.push(n.data.data[i].prob)

}

}

};

// 打乱prob数组,

prob.sort(function() {

return (0.5-Math.random());

});

that.setData({

awards:n.data.data,

prob:prob,

});

// 绘制转盘

var awardsConfig = that.data.awards,len = awardsConfig.length,rotateDeg = 360 / len / 2 + 90,html = [],turnNum = 1 / len  // 文字旋转 turn 值

that.setData({

btnDisabled: that.data.chance ? '' : 'disabled'

})

var ctx = wx.createContext()

for (var i = 0; i 

// 保存当前状态

ctx.save();

// 开始一条新路径

ctx.beginPath();

// 位移到圆心,下面需要围绕圆心旋转

ctx.translate(150, 150);

// 从(0, 0)坐标开始定义一条新的子路径

ctx.moveTo(0, 0);

// 旋转弧度,需将角度转换为弧度,使用 degrees * Math.PI/180 公式进行计算。

ctx.rotate((360 / len * i - rotateDeg) * Math.PI/180);

// 绘制圆弧

ctx.arc(0, 0, 150, 0,  2 * Math.PI / len, false);

// 颜色间隔

if (i % 2 == 0) {

ctx.setFillStyle('#ffb820');

}else{

ctx.setFillStyle('#ffcb3f');

}

// 填充扇形

ctx.fill();

// 绘制边框

ctx.setLineWidth(0.5);

ctx.setStrokeStyle('#e4370e');

ctx.stroke();

// 恢复前一个状态

ctx.restore();

// 奖项列表

html.push({turn: i * turnNum + 'turn', award: awardsConfig[i].name});

}

that.setData({

awardsList: html

});

wx.drawCanvas({

canvasId: 'lotteryCanvas',

actions: ctx.getActions()

})

}

});

},

// 点击抽奖

getLottery: function () {

var that = this

// 随机prob数组的下标拿到prob的值

let Snum = Math.floor(Math.random()*that.data.prob.length);

that.query(that.data.prob[Snum]);

},

// 获取奖品数据以及下标,

query(snum){

let that=this;

let arr=[];

for(let i=0;i

if (that.data.awards[i].prob==snum) {

arr.push(that.data.awards[i])

}

};

// 判断arr的数组是否含有相同概率的元素,然后根据name来匹配awards奖品数组中的name,返回awards数组的下标,如需判断根据奖品数量是否被抽完,则需要在加一层if,重新执行一边getLottery()方法即可,

if (arr.length==1) {

// console.log(arr[0].name);

for (let i in that.data.awards) {

if (that.data.awards[i].name==arr[0].name) {

this.Statr(i)

}

};

} else {

let Snum = Math.floor(Math.random() * arr.length);

// console.log(arr[Snum].name);

for (let i in that.data.awards) {

if (that.data.awards[i].name==arr[Snum].name) {

this.Statr(i)

}

};

}

},

// 开始抽奖

Statr(Snum){

let that=this;

var awardIndex = Snum;

// var awardIndex = Math.random() * 6 >>> 0;

// 获取奖品配置

var awardsConfig = that.data.awards

if (awardIndex 

// console.log(awardIndex)

// 初始化 rotate

var animationInit = wx.createAnimation({

duration: 1

})

this.animationInit = animationInit;

animationInit.rotate(0).step()

this.setData({

animationData: animationInit.export(),

// btnDisabled: 'disabled'

})

// 旋转抽奖

setTimeout(function() {

var animationRun = wx.createAnimation({

duration: 4000,

timingFunction: 'ease'

})

that.animationRun = animationRun

animationRun.rotate(360 * 8 - awardIndex * (360 / 6)).step()

that.setData({

animationData: animationRun.export()

})

}, 100)

// 中奖提示

setTimeout(function() {

wx.showModal({

title: '恭喜',

content: '获得' + (awardsConfig[awardIndex].name),

showCancel: false

})

if (that.data.chance) {

that.setData({

btnDisabled: ''

})

}

}, 4100);

},

这篇关于微信php喝酒转盘小程序,微信小程序 转盘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/176664

相关文章

微信公众号脚本-获取热搜自动新建草稿并发布文章

《微信公众号脚本-获取热搜自动新建草稿并发布文章》本来想写一个自动化发布微信公众号的小绿书的脚本,但是微信公众号官网没有小绿书的接口,那就写一个获取热搜微信普通文章的脚本吧,:本文主要介绍微信公众... 目录介绍思路前期准备环境要求获取接口token获取热搜获取热搜数据下载热搜图片给图片加上标题文字上传图片

如何用java对接微信小程序下单后的发货接口

《如何用java对接微信小程序下单后的发货接口》:本文主要介绍在微信小程序后台实现发货通知的步骤,包括获取Access_token、使用RestTemplate调用发货接口、处理AccessTok... 目录配置参数 调用代码获取Access_token调用发货的接口类注意点总结配置参数 首先需要获取Ac

基于Python开发PDF转Doc格式小程序

《基于Python开发PDF转Doc格式小程序》这篇文章主要为大家详细介绍了如何基于Python开发PDF转Doc格式小程序,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 用python实现PDF转Doc格式小程序以下是一个使用Python实现PDF转DOC格式的GUI程序,采用T

将java程序打包成可执行文件的实现方式

《将java程序打包成可执行文件的实现方式》本文介绍了将Java程序打包成可执行文件的三种方法:手动打包(将编译后的代码及JRE运行环境一起打包),使用第三方打包工具(如Launch4j)和JDK自带... 目录1.问题提出2.如何将Java程序打包成可执行文件2.1将编译后的代码及jre运行环境一起打包2

在不同系统间迁移Python程序的方法与教程

《在不同系统间迁移Python程序的方法与教程》本文介绍了几种将Windows上编写的Python程序迁移到Linux服务器上的方法,包括使用虚拟环境和依赖冻结、容器化技术(如Docker)、使用An... 目录使用虚拟环境和依赖冻结1. 创建虚拟环境2. 冻结依赖使用容器化技术(如 docker)1. 创

PHP执行php.exe -v命令报错的解决方案

《PHP执行php.exe-v命令报错的解决方案》:本文主要介绍PHP执行php.exe-v命令报错的解决方案,文中通过图文讲解的非常详细,对大家的学习或工作有一定的帮助,需要的朋友可以参考下... 目录执行phpandroid.exe -v命令报错解决方案执行php.exe -v命令报错-PHP War

W外链微信推广短连接怎么做?

制作微信推广链接的难点分析 一、内容创作难度 制作微信推广链接时,首先需要创作有吸引力的内容。这不仅要求内容本身有趣、有价值,还要能够激起人们的分享欲望。对于许多企业和个人来说,尤其是那些缺乏创意和写作能力的人来说,这是制作微信推广链接的一大难点。 二、精准定位难度 微信用户群体庞大,不同用户的需求和兴趣各异。因此,制作推广链接时需要精准定位目标受众,以便更有效地吸引他们点击并分享链接

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟 开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚 第一站:海量资源,应有尽有 走进“智听

EMLOG程序单页友链和标签增加美化

单页友联效果图: 标签页面效果图: 源码介绍 EMLOG单页友情链接和TAG标签,友链单页文件代码main{width: 58%;是设置宽度 自己把设置成与您的网站宽度一样,如果自适应就填写100%,TAG文件不用修改 安装方法:把Links.php和tag.php上传到网站根目录即可,访问 域名/Links.php、域名/tag.php 所有模板适用,代码就不粘贴出来,已经打

跨系统环境下LabVIEW程序稳定运行

在LabVIEW开发中,不同电脑的配置和操作系统(如Win11与Win7)可能对程序的稳定运行产生影响。为了确保程序在不同平台上都能正常且稳定运行,需要从兼容性、驱动、以及性能优化等多个方面入手。本文将详细介绍如何在不同系统环境下,使LabVIEW开发的程序保持稳定运行的有效策略。 LabVIEW版本兼容性 LabVIEW各版本对不同操作系统的支持存在差异。因此,在开发程序时,尽量使用