您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了JS實(shí)現(xiàn)隨機(jī)抽選獲獎(jiǎng)?wù)叩木唧w代碼,供大家參考,具體內(nèi)容如下
<!--2018年9月12日——————幸運(yùn)抽獎(jiǎng)--> <!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> .select{ background: #3399FF; color:white; } .button{ border-radius: 10px; height: 100px; font-size: 25px; width: 100px; background-color: #3399FF; color: white; } .title{ font-family: cursive; } </style> </head> <body> <div class="title">抽獎(jiǎng)人員名單</div> <table background="C:\Users\Administrator\Desktop\%application%\360壁紙\50736.jpg" > <tr> <td id="student_1">謝林峰</td> <td id="student_2">卿明珠</td> <td id="student_3">袁龍</td> <td id="student_4">周志明</td> <td id="student_5">秦玉萍</td> <td id="student_6">金暉</td> <td id="student_7">陶靈峰</td> <td id="student_8">廖楊明</td> </tr> <tr> <td id="student_9">胡雄</td> <td id="student_10">胡俊凡</td> <td id="student_11">李欣</td> <td id="student_12">易君</td> <td id="student_13">湛威</td> <td id="student_14">古海平</td> <td id="student_15">潘杰杰</td> <td id="student_16">伍光政</td> </tr> <tr> <td id="student_17">譚談</td> <td id="student_18">周強(qiáng)</td> <td id="student_19">陳輝</td> <td id="student_20">李庚云</td> <td id="student_21">吳玉風(fēng)</td> <td id="student_22">伍鵬</td> <td id="student_23">蔡?hào)|龍</td> <td id="student_24">胡俊飛</td> </tr> <tr> <td id="student_25">文捷頻</td> <td id="student_26">唐明</td> <td id="student_27">吳鑫培</td> <td id="student_28">唐翌</td> <td id="student_29">鄒家歡</td> <td id="student_30">劉朋</td> <td id="student_31">周文才</td> <td id="student_32">陽小松</td> </tr> <tr> <td id="student_33">張明博</td> <td id="student_34">嚴(yán)偉</td> <td id="student_"></td> <td id="student_"></td> <td id="student_"></td> <td id="student_"></td> <td id="student_"></td> <td id="student_"></td> </tr> </table> <sapn >抽獎(jiǎng)倒計(jì)時(shí):</sapn><span id="Ten" >10</span> <span >s</span> <span >幸運(yùn)星:</span> <span id="Lucky" class="title"></span> <div ><button onclick="go()" class="button">走你</button></div> </body> <script type="text/javascript"> //鼠標(biāo)單擊事件 var stuInterval; var flag = false; //點(diǎn)擊開始事件 function go(){ if(flag != false){ return; } flag = true; setTimeout(function(){ flag = false; },15000); time();//調(diào)用時(shí)間倒計(jì)時(shí)方法 //循環(huán)選取學(xué)生 stuInterval=setInterval(function(){ var ran=Math.floor(Math.random()*34+1); var id="student_"+ran; //獲取到文本值并且賦屬性 var td=document.getElementById(id); //刪除之前的樣式 var stuO = document.getElementsByClassName("select"); if(stuO.length != 0){ stuO[0].setAttribute("class",""); }if(stuO){ td.setAttribute("class","select"); var stuname = td.innerText; document.getElementById("Lucky").innerText = stuname; } },200) } //時(shí)間倒計(jì)時(shí) function time(){ var t=10; var int=setInterval(function(){ --t; var tspan=document.getElementById("Ten"); tspan.innerText=t; if(t==0){ clearInterval(int); clearInterval(stuInterval);//延時(shí)特殊情況 } },1000); } </script> </html>
向AI問一下細(xì)節(jié)
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。