js實(shí)現(xiàn)可鍵盤控制的簡(jiǎn)單抽獎(jiǎng)程序
來源:易賢網(wǎng) 閱讀:930 次 日期:2016-07-27 15:58:35
溫馨提示:易賢網(wǎng)小編為您整理了“js實(shí)現(xiàn)可鍵盤控制的簡(jiǎn)單抽獎(jiǎng)程序”,方便廣大網(wǎng)友查閱!

本文實(shí)例為大家分享了js抽獎(jiǎng)程序的編寫代碼,以及編寫注意事項(xiàng),感興趣的小伙伴們可以參考一下

代碼:

<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>簡(jiǎn)單抽獎(jiǎng)(可用鍵盤)</title>

  <style>

    *{margin:0;padding:0;}

    .box{width: 400px;height: 300px;margin:50px auto;background: red}

    .title{color: #fff;font-size: 30px;font-weight:700px;padding: 50px 0;text-align: center;height:40px;}

    .btm{text-align: center;padding:20px 0;}

    .btm a{display: inline-block;width: 120px;height:60px;line-height: 60px;background: #FEF097;margin:0 10px;text-decoration: none;}

  </style>

  <script>

    var data=['Iphone','Ipad','筆記本','相機(jī)','謝謝參與','充值卡','購(gòu)物券'],

      timer=null,//定時(shí)器

      flag=0;//阻止多次回車

    window.onload=function(){

      var play=document.getElementById('play'),

        stop=document.getElementById('stop');

      // 開始抽獎(jiǎng)

      play.onclick=playFun;

      stop.onclick=stopFun;

      // 鍵盤事件

      document.onkeyup=function(event){

        event = event || window.event;

        // 回車鍵的code值:13

        if(event.keyCode==13){

          if(flag==0){

            playFun();

            flag=1;

           }else{

              stopFun();

              flag=0;

           }

         }

        }

        function playFun(){

        var title=document.getElementById('title');

        var play=document.getElementById('play');

        clearInterval(timer);

        timer=setInterval(function(){

          var random=Math.floor(Math.random()*data.length);

          title.innerHTML=data[random];

        },60);

        play.style.background='#999';

      }

      function stopFun(){

        clearInterval(timer);

        var play=document.getElementById('play');

        play.style.background='#FEF097';

      }

    }

  </script>

</head>

<body>

  <div class="box">

    <div class="title" id="title">淘家趣抽獎(jiǎng)</div>

    <div class="btm">

      <a href="javascript:;" id="play">開始</a>

      <a href="javascript:;" id="stop">停止</a>

    </div>

  </div>

</body>

</html>

注意點(diǎn): 

1.隨機(jī)數(shù),取數(shù)組的其中一個(gè);取0-n之間:Math.random()*(n+1)

2.定時(shí)器,開始抽獎(jiǎng)時(shí)要停止前面的一次抽獎(jiǎng),不然會(huì)定時(shí)器重疊

3.按鍵操作,要判斷是抽獎(jiǎng)進(jìn)行中,還是未開始,所有設(shè)置了變量 flag 

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:js實(shí)現(xiàn)可鍵盤控制的簡(jiǎn)單抽獎(jiǎng)程序
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)