javascript走馬灯抽選の実例解説

2651 ワード

この文章の実例はjavascript走馬灯の抽選特効を説明しています.特に抽選活動に適しています.皆さんの参考にしてください.具体的な内容は以下の通りです.





    

  
  window.onload=init;
    var setting={
    count:0,
    total:24,
    delay:20,
    picIndex:[0,1,2,4,7,6,5,3]
  }
    function init(){
    document.getElementById("drawBtn").onclick=function(){
      setting.count=0;
      setting.delay=20;
      this.disable=true;//    
      var drawBtn=this;
      //       div
      var allDivs=document.getElementsByClassName("pic");
      //        ,         ,3*8+(0-7)
      setting.total+=Math.floor(Math.random()*allDivs.length);
      //     ,      div     .
      setTimeout(function show(){
        //          
       for (var i=0;i<allDivs.length;i++){
         allDivs[i].style.borderColor="#fff";
         allDivs[i].style.opacity=0.7;
       }
        //               
          var currentPic=allDivs[setting.picIndex[setting.count%8]];
          currentPic.style.borderColor="red";
          currentPic.style.opacity=1.0;
        setting.count++;
        setting.delay+=2*setting.count;
          if(setting.count>setting.total){
            alert("    ,  ");
            drawBtn.disable=false;
            return;
          }
          setTimeout(show,setting.delay);
      },setting.delay);
    }
    }
  


1
2
3
4
5
6
7
8
以上が本文の詳細です.皆さんの勉強に役に立ちますように.