前端-JS实现随机抽奖
在前端的开发当中,我们肯定会遇到随机抽奖的需求。我们要怎么去实现呢?下⾯就来分享随机抽奖的JS代码,有需要的⼩伙伴可以复制到编译器当中运⾏查看效果。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
#wrap {
text-align: center;
width: 500px;
margin: 100px auto;
position: relative;
}
#ul1 {
width: 303px;
height: 303px;
margin: 50px auto;
padding: 0;
border-top: 1px solid black;
border-left: 1px solid black;
}
#ul1 li {
float: left;
border-right: 1px solid black;
border-bottom: 1px solid black;
list-style: none;
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
}
#tooltips {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
position: absolute;
top: 0;
z-index: 999;
display: none;
}
#info .btn button {
background-color: #009f95;
color: white;
outline: none;
font-size: 10px;
width: 60px;
height: 30px;
margin-left: 300px;
}
#info .content {
height: 120px;
padding: 20px;
box-sizing: border-box;
}
</style>
</head>
<body>
<div id="wrap">
<button id="btn">开始抽奖</button>
<ul id="ul1">
<ul id="ul1">
<li>⿏标</li>
<li>1000万</li>
<li>100优惠券</li>
<li>很遗憾</li>
<li>键盘</li>
<li>iPhoneX</li>
<li>很遗憾</li>
<li>迪拜10⽇游</li>
<li>很遗憾</li>
</ul>
</div>
<!--提⽰信息-->
<div id="tooltips">
<div id="info">
<div class="title">信息</div>
<div class="content" id="content">恭喜你,中奖啦</div>
<div class="btn">
<button id="confirm">确定</button>
</div>
</div>
</div>
<script type="text/javascript">
position标签属性// 思路:1.实现红⾊背景切换  2当运动停⽌,弹出对话框-- ⽤js去修改tooltips的display属性变为block            var oStart = ElementById("btn")
// li标签
var aLi = ElementsByTagName("li")
// 提⽰框
var oTooltips = ElementById("tooltips")
// 提⽰框的确定按钮
var oConfirm = ElementById("confirm")
// 提⽰框的提⽰内容
var oContent = ElementById("content")
// 定时器id
var timmer = null
// 设置oTooltips的⾼度和html⽂档⾼度⼀样,这样把所有的内容都遮住
oTooltips.style.height = document.documentElement.offsetHeight + "px"
// 清空计时器
clearInterval(timmer)
// 定义⼀个下标
var nowIndex = 0
// ⽣成⼀个随机数,跑到第四圈的时候产⽣⼀个随机中奖数字
var randomInt = getRandomInt(26, 35)
// 下⾯代码只是为了给⽤户感觉:正在抽奖
timmer = setInterval(function() {
changeColor(aLi, nowIndex % aLi.length)
// 下标⾃动+1
nowIndex++
console.log("切换的下标", nowIndex, "随机数", randomInt)
/
/ randomInt表⽰中奖的数字,如果nowIndex和randomInt⼀样,我们就认为当前的li是抽中的奖品                    if(nowIndex === randomInt) {
clearInterval(timmer)
// 停⽌以后,还应该往后切换⼀次
changeColor(aLi, nowIndex % aLi.length)
// 在停⽌的时候,获取到当前抽中的li的内容
if(aLi[randomInt % aLi.length].innerHTML === "很遗憾") {
oContent.innerHTML = "很遗憾没有中奖"
} else {
oContent.innerHTML = "恭喜你,你抽中了" + aLi[randomInt % aLi.length].innerHTML
}
oTooltips.style.display = "block"
}
}, 100)
// 什么时候停⽌?当中奖的时候停⽌,抽中了谁?
// 可以⽤随机数⽣成⼀个具体的数字  randomInt
// 完善功能:提⽰⽤户抽中了什么 2让背景切换多跑⼏圈
}
// 当点击提⽰框确定按钮的时候,提⽰框消失
oTooltips.style.display = "none"
}
// 封装切换⼀个切换背景的⽅法

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。