效果如上圖所示,下面對其實現代碼進行分析,看能不能破解其抽獎規則。須要引入jquery-1.8.3.min.js和images/9張圖片。javascript
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>九宮格抽獎轉盤</title> <style type="text/css"> #lottery{width:574px;height:584px;margin:20px auto 0;background:url(images/bg.jpg) no-repeat;padding:50px 55px;} #lottery table td{width:142px;height:142px;text-align:center;vertical-align:middle;font-size:24px;color:#333;font-index:-999} #lottery table td a{width:284px;height:284px;line-height:150px;display:block;text-decoration:none;} #lottery table td.active{background-color:#ea0000;} </style> </head> <body> <div id="lottery"> <table border="0" cellpadding="0" cellspacing="0"> <tr> <td class="lottery-unit lottery-unit-0"><img src="images/1.png"></td> <td class="lottery-unit lottery-unit-1"><img src="images/2.png"></td> <td class="lottery-unit lottery-unit-2"><img src="images/4.png"></td> <td class="lottery-unit lottery-unit-3"><img src="images/3.png"></td> </tr> <tr> <td class="lottery-unit lottery-unit-11"><img src="images/7.png"></td> <td colspan="2" rowspan="2"><a href="#"></a></td> <td class="lottery-unit lottery-unit-4"><img src="images/5.png"></td> </tr> <tr> <td class="lottery-unit lottery-unit-10"><img src="images/1.png"></td> <td class="lottery-unit lottery-unit-5"><img src="images/6.png"></td> </tr> <tr> <td class="lottery-unit lottery-unit-9"><img src="images/3.png"></td> <td class="lottery-unit lottery-unit-8"><img src="images/6.png"></td> <td class="lottery-unit lottery-unit-7"><img src="images/8.png"></td> <td class="lottery-unit lottery-unit-6"><img src="images/7.png"></td> </tr> </table> </div> <script type="text/javascript" src="jquery-1.8.3.min.js"></script> <script type="text/javascript"> var lottery={ index:-1, //當前轉動到哪一個位置,起點位置 count:0, //總共有多少個位置 timer:0, //setTimeout的ID,用clearTimeout清除 speed:20, //初始轉動速度 times:0, //轉動次數 cycle:50, //轉動基本次數:即至少須要轉動多少次再進入抽獎環節 prize:-1, //中獎位置 init:function(id){ if ($("#"+id).find(".lottery-unit").length>0) { $lottery = $("#"+id); $units = $lottery.find(".lottery-unit"); this.obj = $lottery; this.count = $units.length; $lottery.find(".lottery-unit-"+this.index).addClass("active"); }; }, roll:function(){ var index = this.index; var count = this.count; var lottery = this.obj; $(lottery).find(".lottery-unit-"+index).removeClass("active"); index += 1; if (index>count-1) { index = 0; }; $(lottery).find(".lottery-unit-"+index).addClass("active"); this.index=index; return false; }, stop:function(index){ this.prize=index; return false; } }; function roll(){ lottery.times += 1; lottery.roll(); if (lottery.times > lottery.cycle+10 && lottery.prize==lottery.index) { clearTimeout(lottery.timer); lottery.prize=-1; lottery.times=0; click=false; }else{ if (lottery.times<lottery.cycle) { lottery.speed -= 10; }else if(lottery.times==lottery.cycle) { var index = Math.random()*(lottery.count)|0; lottery.prize = index; }else{ if (lottery.times > lottery.cycle+10 && ((lottery.prize==0 && lottery.index==7) || lottery.prize==lottery.index+1)) { lottery.speed += 110; }else{ lottery.speed += 20; } } if (lottery.speed<40) { lottery.speed=40; }; //console.log(lottery.times+'^^^^^^'+lottery.speed+'^^^^^^^'+lottery.prize); lottery.timer = setTimeout(roll,lottery.speed); } return false; } var click=false; window.onload=function(){ lottery.init('lottery'); $("#lottery a").click(function(){ if (click) { return false; }else{ lottery.speed=100; roll(); click=true; return false; } }); }; </script> </body> </html>
先來看看Style樣式的佈局,以下:css
<style type="text/css"> #lottery{width:574px;height:584px;margin:20px auto 0;background:url(images/bg.jpg) no-repeat;padding:50px 55px;} #lottery table td{width:142px;height:142px;text-align:center;vertical-align:middle;font-size:24px;color:#333;font-index:-999} #lottery table td a{width:284px;height:284px;line-height:150px;display:block;text-decoration:none;} #lottery table td.active{background-color:#ea0000;} </style>
以上爲jQuery的選擇器:html
#選擇ID,那麼全局搜索:id="lottery"定位到了div九宮格區域。定義了div區域高、寬。內外邊距(手機像素和PC像素不同px),背景圖片。前端
#lottery table td,是層疊選擇器。選擇全部的id="lottery" 標籤下的table標籤下的td標籤(即全部td標籤)。text-align:center即文本對齊方式:居中對齊(嵌入裏面的圖片居中對齊)。vertical-align:middle即垂直對齊方式:居中對齊(類比word中)。font-size:24px即字體寬度像素。font-index:-999即設置元素的堆疊順序(這個是分層的)。line-height:150px即行高。display:block即讓對象成爲塊級元素。text-decoration:none即設置text文本修飾。java
var lottery={
index:-1, //當前轉動到哪一個位置,起點位置
count:0, //總共有多少個位置
timer:0, //setTimeout的ID,用clearTimeout清除
speed:20, //初始轉動速度
times:0, //轉動次數
cycle:50, //轉動基本次數:即至少須要轉動多少次再進入抽獎環節
prize:-1, //中獎位置
running:false, //添加鎖,使轉盤在轉動過程當中再點擊抽獎無效。
//JSON(JavaScript Object Notation), Notation字面的意思是符號,計法。類比JSON數據傳輸格式。JS對象計法。是最先期的JavaScript的對象定義方法。
init:function(id){
if ($("#"+id).find(".lottery-unit").length>0) {
$lottery = $("#"+id);
$units = $lottery.find(".lottery-unit");
this.obj = $lottery;
this.count = $units.length;
$lottery.find(".lottery-unit-"+this.index).addClass("active");
};
},
roll:function(){
var index = this.index;
var count = this.count;
var lottery = this.obj;
$(lottery).find(".lottery-unit-"+index).removeClass("active");
index += 1;
if (index>count-1) {
index = 0;
};
$(lottery).find(".lottery-unit-"+index).addClass("active");
this.index=index;
return false;
},
stop:function(index){
this.prize=index;
return false;
}
};
這是JS中定義對象的方式,不是jQuery定義對象。(說明一下,$(".type")返回的就是一個jQuery對象;一樣CSS選擇器返回的就是一個CSS對象,這點很重要)jquery
以上定義了對象lottery,index = -1,count = 0,表示建立了對象的兩個屬性,並賦值。
瀏覽器
init:function(id){
if ($("#"+id).find(".lottery-unit").length>0) {
$lottery = $("#"+id);
$units = $lottery.find(".lottery-unit");
this.obj = $lottery;
this.count = $units.length;
$lottery.find(".lottery-unit-"+this.index).addClass("active");
};
},
//做用是將js的轉動切換到就緒狀態。好像運動員到了預備狀態。同樣。
對於lottery中的初始化函數init( ), $("#"+id).find(".lottery-unit").length>0 中使用了jQuery的find函數( find() 方法得到當前元素集合中每一個元素的後代 ),看到上面class的定義中,class="lottery-unit lottery-unit-1"這兩個class的名字是平等的關係。就是給它搞了兩個名字(爲何這麼使用,前端同窗說,頁面儘可能不要用id,由於id會表示惟一,容易有衝突重複)。這個語句,判斷了class="lottery-unit"的個數,正好是12個,獎品池中獎品個數。微信
JQuery中事件的return false;它表示阻止瀏覽器的默認行爲。dom
if (lottery.times > lottery.cycle+10 && lottery.prize==lottery.index) { clearTimeout(lottery.timer); lottery.prize=-1; lottery.times=0; click=false; }else{ if (lottery.times<lottery.cycle) { lottery.speed -= 10; //第一步,以速度10遞減。
}else if(lottery.times==lottery.cycle) //第三步,當第五十圈的時候,肯定中獎位置。 { var index = Math.random()*(lottery.count)|0; lottery.prize = index; }else{ if (lottery.times > lottery.cycle+10 && ((lottery.prize==0 && lottery.index==7) || lottery.prize==lottery.index+1)) //第五步,大於60圈 且 同時知足中獎。迅速跳到中獎處。 { lottery.speed += 110; }else //第四步,在(50圈,60圈)區間內,迅速依次序跳到獲獎位置。 { lottery.speed += 20; } } if (lottery.speed<40) { //第二步,保證圈圈轉夠50圈,以速度40。 lottery.speed=40; };
這個頁面是由微信公衆號來玩兒的,目的是引入流量。因此若是pc端訪問H5頁面的話,但願可以作出判斷。根據當前的平臺,選擇適配的頁面。這兒有一個知識點叫作:經過UserAgent判斷智能手機(設備,Android,IOS)函數
// 代碼的實現,經過加以下的js代碼到首頁 index.html中。
<script type="text/javascript"> function IsPhone() { var userAgentInfo = navigator.userAgent; var Agents = ["Android", "iPhone","SymbianOS", "Windows Phone","iPad", "iPod"]; var flag = true; for (var v = 0; v < Agents.length; v++) { if (userAgentInfo.indexOf(Agents[v]) > 0) { flag = false; break; } } return flag; } if (IsPhone()) { window.location ="https://www.qmcaifu.com"; }; </script>
整個js的操做:先init初始化到起點位置;而後執行roll方法,進行轉盤操做。