js實現(xiàn)隨機(jī)抽獎
更新時間:2020年03月19日 12:05:14 作者:裕博
這篇文章主要為大家詳細(xì)介紹了js實現(xiàn)隨機(jī)抽獎功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
前言
在前端的開發(fā)當(dāng)中,我們肯定會遇到隨機(jī)抽獎的需求。我們要怎么去實現(xiàn)呢?下面就來分享隨機(jī)抽獎的JS代碼,有需要的小伙伴可以復(fù)制到編譯器當(dāng)中運行查看效果。
隨機(jī)抽獎的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">
<li>鼠標(biāo)</li>
<li>1000萬</li>
<li>100優(yōu)惠券</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">
// 思路:1.實現(xiàn)紅色背景切換 2當(dāng)運動停止,彈出對話框-- 用js去修改tooltips的display屬性 變?yōu)閎lock
var oStart = document.getElementById("btn")
// li標(biāo)簽
var aLi = document.getElementsByTagName("li")
// 提示框
var oTooltips = document.getElementById("tooltips")
// 提示框的確定按鈕
var oConfirm = document.getElementById("confirm")
// 提示框的提示內(nèi)容
var oContent = document.getElementById("content")
// 定時器id
var timmer = null
// 設(shè)置oTooltips的高度和html文檔高度一樣,這樣把所有的內(nèi)容都遮住
oTooltips.style.height = document.documentElement.offsetHeight + "px"
oStart.onclick = function() {
// 清空計時器
clearInterval(timmer)
// 定義一個下標(biāo)
var nowIndex = 0
// 生成一個隨機(jī)數(shù),跑到第四圈的時候產(chǎn)生一個隨機(jī)中獎數(shù)字
var randomInt = getRandomInt(26, 35)
// 下面代碼只是為了給用戶感覺:正在抽獎
timmer = setInterval(function() {
changeColor(aLi, nowIndex % aLi.length)
// 下標(biāo)自動+1
nowIndex++
console.log("切換的下標(biāo)", nowIndex, "隨機(jī)數(shù)", randomInt)
// randomInt表示中獎的數(shù)字 ,如果nowIndex和randomInt一樣,我們就認(rèn)為當(dāng)前的li是抽中的獎品
if(nowIndex === randomInt) {
clearInterval(timmer)
// 停止以后,還應(yīng)該往后切換一次
changeColor(aLi, nowIndex % aLi.length)
// 在停止的時候,獲取到當(dāng)前抽中的li的內(nèi)容
if(aLi[randomInt % aLi.length].innerHTML === "很遺憾") {
oContent.innerHTML = "很遺憾沒有中獎"
} else {
oContent.innerHTML = "恭喜你,你抽中了" + aLi[randomInt % aLi.length].innerHTML
}
oTooltips.style.display = "block"
}
}, 100)
// 什么時候停止?當(dāng)中獎的時候停止,抽中了誰?
// 可以用隨機(jī)數(shù)生成一個具體的數(shù)字 randomInt
// 完善功能:提示用戶抽中了什么 2讓背景切換多跑幾圈
}
// 當(dāng)點擊提示框確定按鈕的時候,提示框消失
oConfirm.onclick = function() {
oTooltips.style.display = "none"
}
// 封裝切換一個切換背景的方法
function changeColor(aLi, nowIndex) {
for(var i = 0; i < aLi.length; i++) {
// 清除上一個紅色背景,全部設(shè)置成白色
aLi[i].style.backgroundColor = "white"
}
// 當(dāng)前下標(biāo)背景設(shè)置成紅色
aLi[nowIndex].style.backgroundColor = "red"
}
// 獲取隨機(jī)數(shù)的方法
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1) + min)
}
</script>
</body>
</html>
小編還為大家準(zhǔn)備了精彩的專題:javascript經(jīng)典小游戲匯總
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
javascript設(shè)計模式之模塊模式學(xué)習(xí)筆記
這篇文章主要為大家詳細(xì)介紹了javascript設(shè)計模式之模塊模式學(xué)習(xí)筆記,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-02-02
JavaScript中new操作符的原理與實現(xiàn)詳解
你知道new嗎?你知道new的實現(xiàn)原理嗎?你能手寫new方法嗎?不要擔(dān)心,這篇文件就來帶大家深入了解一下JavaScript中的new操作符,感興趣的小伙伴可以學(xué)習(xí)一下2022-10-10
JavaScript函數(shù)防抖與函數(shù)節(jié)流的定義及使用詳解
這篇文章主要為大家詳細(xì)介紹一下JavaScript中函數(shù)防抖與函數(shù)節(jié)流的定義及使用,文中的示例代碼講解詳細(xì),對我們學(xué)習(xí)JS有一定幫助,需要的可以參考一下2022-08-08

