九宫格抽奖转盘源码分析

效果如上图所示,下面对其实现代码进行分析,看能不能破解其抽奖规则。需要引入jquery-1.8.3.min.js和images/9张图片。

<!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样式的布局,如下:

<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的选择器:

#选择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文本修饰。

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;
                    }
};

这是JS中定义对象的方式,不是jQuery定义对象。(说明一下,$(".type")返回的就是一个jQuery对象;同样CSS选择器返回的就是一个CSS对象,这点很重要)

以上定义了对象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;它表示阻止浏览器的默认行为。

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;

                };
				
时间: 2024-10-13 15:58:57

九宫格抽奖转盘源码分析的相关文章

【Cocos2d-x】源码分析之 2d/ui/UILayout

#ifndef __LAYOUT_H__ #define __LAYOUT_H__ #include "ui/UIWidget.h" NS_CC_BEGIN namespace ui { typedef enum { LAYOUT_COLOR_NONE,//空 LAYOUT_COLOR_SOLID,//单一固定颜色的 LAYOUT_COLOR_GRADIENT//有梯度变化的 }LayoutBackGroundColorType;//容器背景颜色类型 typedef enum { LA

Android 上千实例源码分析以及开源分析

Android 上千实例源码分析以及开源分析(百度云分享) 要下载的直接翻到最后吧,项目实例有点多. 首先 介绍几本书籍(下载包中)吧. 01_Android系统概述 02_Android系统的开发综述 03_Android的Linux内核与驱动程序 04_Android的底层库和程序 05_Android的JAVA虚拟机和JAVA环境 06_Android的GUI系统 07_Android的Audio系统 08_Android的Video 输入输出系统 09_Android的多媒体系统 10_

TeamTalk源码分析之login_server

login_server是TeamTalk的登录服务器,负责分配一个负载较小的MsgServer给客户端使用,按照新版TeamTalk完整部署教程来配置的话,login_server的服务端口就是8080,客户端登录服务器地址配置如下(这里是win版本客户端): 1.login_server启动流程 login_server的启动是从login_server.cpp中的main函数开始的,login_server.cpp所在工程路径为server\src\login_server.下表是logi

Android触摸屏事件派发机制详解与源码分析二(ViewGroup篇)

1 背景 还记得前一篇<Android触摸屏事件派发机制详解与源码分析一(View篇)>中关于透过源码继续进阶实例验证模块中存在的点击Button却触发了LinearLayout的事件疑惑吗?当时说了,在那一篇咱们只讨论View的触摸事件派发机制,这个疑惑留在了这一篇解释,也就是ViewGroup的事件派发机制. PS:阅读本篇前建议先查看前一篇<Android触摸屏事件派发机制详解与源码分析一(View篇)>,这一篇承接上一篇. 关于View与ViewGroup的区别在前一篇的A

HashMap与TreeMap源码分析

1. 引言     在红黑树--算法导论(15)中学习了红黑树的原理.本来打算自己来试着实现一下,然而在看了JDK(1.8.0)TreeMap的源码后恍然发现原来它就是利用红黑树实现的(很惭愧学了Java这么久,也写过一些小项目,也使用过TreeMap无数次,但到现在才明白它的实现原理).因此本着"不要重复造轮子"的思想,就用这篇博客来记录分析TreeMap源码的过程,也顺便瞅一瞅HashMap. 2. 继承结构 (1) 继承结构 下面是HashMap与TreeMap的继承结构: pu

Linux内核源码分析--内核启动之(5)Image内核启动(rest_init函数)(Linux-3.0 ARMv7)【转】

原文地址:Linux内核源码分析--内核启动之(5)Image内核启动(rest_init函数)(Linux-3.0 ARMv7) 作者:tekkamanninja 转自:http://blog.chinaunix.net/uid-25909619-id-4938395.html 前面粗略分析start_kernel函数,此函数中基本上是对内存管理和各子系统的数据结构初始化.在内核初始化函数start_kernel执行到最后,就是调用rest_init函数,这个函数的主要使命就是创建并启动内核线

Spark的Master和Worker集群启动的源码分析

基于spark1.3.1的源码进行分析 spark master启动源码分析 1.在start-master.sh调用master的main方法,main方法调用 def main(argStrings: Array[String]) { SignalLogger.register(log) val conf = new SparkConf val args = new MasterArguments(argStrings, conf) val (actorSystem, _, _, _) =

Solr4.8.0源码分析(22)之 SolrCloud的Recovery策略(三)

Solr4.8.0源码分析(22)之 SolrCloud的Recovery策略(三) 本文是SolrCloud的Recovery策略系列的第三篇文章,前面两篇主要介绍了Recovery的总体流程,以及PeerSync策略.本文以及后续的文章将重点介绍Replication策略.Replication策略不但可以在SolrCloud中起到leader到replica的数据同步,也可以在用多个单独的Solr来实现主从同步.本文先介绍在SolrCloud的leader到replica的数据同步,下一篇

zg手册 之 python2.7.7源码分析(4)-- pyc字节码文件

什么是字节码 python解释器在执行python脚本文件时,对文件中的python源代码进行编译,编译的结果就是byte code(字节码) python虚拟机执行编译好的字节码,完成程序的运行 python会为导入的模块创建字节码文件 字节码文件的创建过程 当a.py依赖b.py时,如在a.py中import b python先检查是否有b.pyc文件(字节码文件),如果有,并且修改时间比b.py晚,就直接调用b.pyc 否则编译b.py生成b.pyc,然后加载新生成的字节码文件 字节码对象