JS组件系列——还记得那些年玩过的游戏机吗?(SlotMachine组件简易实现)

前言:前两天在网上找组件,无意中发现了我们儿时游戏机效果的“SlotMachine组件”,浏览一遍下来,勾起了博主小时候满满的回忆。于是下定决定要研究下这么一个东西,不得不再次叹息开源社区的强大,原来这些组件已经被封装得这么好了,使用起来如此简单。下面就让博主带着大家来看看这么一个神奇的组件——SlotMachine吧。

一、组件预览

先来一发简单的效果压压惊

觉得太简单?别急,好戏在后头,试试手气先。

什么?还没达到想要的效果,好!下面,真实效果来一发。

博主点击了好长时间,都没有中奖,难怪小时候怎么都赢不了呢。博主不信邪,继续点击开始,终于有一次中奖的了,真心不容易。

还有我们年终抽奖效果,开始!停止!

二、代码示例

既然是js组件,肯定是先要下载组件库。首先贴上 开源地址

然后来看看文件的引用:

   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
    <link href="~/Content/jQuery-SlotMachine-master/dist/jquery.slotmachine.css" rel="stylesheet" />
    <link href="~/Content/jQuery-SlotMachine-master/css/style.css" rel="stylesheet" />
    <link href="~/Content/toastr/toastr.min.css" rel="stylesheet" />

    <script type="text/javascript" src="//code.jquery.com/jquery-2.1.1.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
    <script src="~/Content/jQuery-SlotMachine-master/dist/jquery.slotmachine.js"></script>
    <script src="~/Content/toastr/toastr.min.js"></script>

这里需要注意几点:

  • 引用jquery和bootstrap都是通过cdn加速的方式引用的,不懂cdn加速的可以百度。
  • Jquery组件必须,并且组件需要Jquery 2.0以上版本的支持,版本太低会有js异常。
  • bootstrap组件并非必须,但是本篇布局需要部分bootstrap的样式支持。
  • toastr组件并非必须,此处用于显示中奖的结果。

1、试试手气效果代码

html部分

<div id="triky">
        <div class="content" style="text-align: center">
            <h1>请选择你想吃的食物</h1>

            <div class="row">
                <div style="margin: auto;">
                    <div id="triky1">
                        <div>
                            <img src="/Content/jQuery-SlotMachine-master/img/cookie.png" />
                        </div>
                        <div>
                            <img src="/Content/jQuery-SlotMachine-master/img/food1.jpg" />
                        </div>
                        <div>
                            <img src="/Content/jQuery-SlotMachine-master/img/food2.jpg" />
                        </div>
                        <div>
                            <img src="/Content/jQuery-SlotMachine-master/img/food3.jpg" />
                        </div>
                    </div>
                    <div>
                        <div class="btn-group btn-group-justified btn-group-triky" style="margin-left:-15px" role="group">
                            <div id="trikyShuffle" type="button" class="btn btn-primary btn-lg">试试手气</div>
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <div class="clearfix"></div>
    </div>

JS部分

     $(function () {
            //试试手气
            var triky = $("#triky1").slotMachine({
                active: 2,   //初始化的时候显示的项的索引
                //delay: 150,//切换两张图片的间隔时间(毫秒单位)
                //randomize: function () {
                //    return 0;//每次旋转后选中值的索引(从0开始)
                //}
            });

            $("#trikyShuffle").click(function () {
                triky.shuffle(8);//开始旋转方法,参数8表示每次旋转跳过8个图标
            });
        });

JS常用属性、方法、事件详解

(1)初始化方法 var machine = $("#id").slotMachine({}); 返回当前旋转的对象。slotMachine()方法里面传递初始化的参数,比如

  • active:表示初始化的时候显示项的索引,从0开始
  • delay:切换两张图片的间隔时间(毫秒单位)
  • auto:是否自动旋转,取值为true or false
  • spins:当auto为true的时候,这是每次跳过图标的个数
  • stophidden:是否出现开始和停止时候的动画
  • randomize:function(activeElementIndex){}此属性表示每次旋转后选中值的索引(从0开始)
  • direction:动画的方向,取值(up||down)

(2)常用方法

  • machine.shuffle( repeat, onStopCallback ); 表示开始旋转,repeat表示每次跳过的图片个数;onstopCallback表示旋转停止后的事件回调方法。
  • machine.prev(); 返回前一个元素
  • machine.next(); 返回后一个元素
  • machine.stop(); 停止旋转
  • machine.active; 得到选中的元素的索引
  • machine.running; 检测是否正在旋转,true表示正在旋转
  • machine.stopping; 检测是否已经停止
  • machine.destroy(); 摧毁旋转节点

2、简单游戏机效果代码示例

html部分

<div id="randomize">
        <div class="content container" style="text-align: center;max-width: 900px;">
            <h1>简易游戏机</h1>

            <div class="row">
                <div class="col-xs-4">
                    <div>
                        <div id="machine1" class="randomizeMachine">
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot1.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot2.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot3.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot4.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot5.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot6.png" /></div>
                        </div>
                    </div>
                </div>

                <div class="col-xs-4">
                    <div>
                        <div id="machine2" class="randomizeMachine">
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot1.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot2.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot3.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot4.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot5.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot6.png" /></div>
                        </div>
                    </div>
                </div>

                <div class="col-xs-4">
                    <div>
                        <div id="machine3" class="randomizeMachine">
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot1.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot2.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot3.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot4.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot5.png" /></div>
                            <div><img src="/Content/jQuery-SlotMachine-master/img/slot6.png" /></div>
                        </div>
                    </div>
                </div>
            </div>

            <div>
                <div class="btn-group btn-group-justified btn-group-randomize" role="group">
                    <div id="ranomizeButton" type="button" class="btn btn-danger btn-lg">开始</div>
                </div>
            </div>
        </div>
    </div>

JS部分

  $(function () {
            //简易游戏机
            var machine1 = $("#machine1").slotMachine({
                active: 0,
                delay: 500
            });

            var machine2 = $("#machine2").slotMachine({
                active: 1,
                delay: 500,
                direction: ‘down‘
            });

            var machine3 = $("#machine3").slotMachine({
                active: 2,
                delay: 500
            });

            var arr = [];
            function onComplete(active) {
                if (arr.length <= 1) {
                    arr.push(active);
                }
                else if (arr.length > 1) {
                    arr.push(active);
                    if (arr[0] == arr[1] && arr[1] == arr[2]) {
                        toastr.success("恭喜你中奖了!");
                    }
                    else if (arr[0] == arr[1] || arr[0] == arr[2] || arr[1] == arr[2]) {
                        toastr.success("还差一点,继续加油");
                    }
                    else {
                        toastr.success("手气不行");
                    }
                    arr = [];
                }
            }

            $("#ranomizeButton").click(function () {

                machine1.shuffle(5, onComplete);

                setTimeout(function () {
                    machine2.shuffle(5, onComplete);
                }, 500);

                setTimeout(function () {
                    machine3.shuffle(5, onComplete);
                }, 1000);

            })
        });

3、单个停止效果代码示例

Html部分

<div id="casino" style="padding-top:50px;">
        <div class="content">
            <h1>抽奖</h1>

            <div>
                <div id="casino1" class="slotMachine" style="margin-left: -65px;">
                    <div class="slot slot1"></div>
                    <div class="slot slot2"></div>
                    <div class="slot slot3"></div>
                    <div class="slot slot4"></div>
                    <div class="slot slot5"></div>
                    <div class="slot slot6"></div>
                </div>

                <div id="casino2" class="slotMachine">
                    <div class="slot slot1"></div>
                    <div class="slot slot2"></div>
                    <div class="slot slot3"></div>
                    <div class="slot slot4"></div>
                    <div class="slot slot5"></div>
                    <div class="slot slot6"></div>
                </div>

                <div id="casino3" class="slotMachine">
                    <div class="slot slot1"></div>
                    <div class="slot slot2"></div>
                    <div class="slot slot3"></div>
                    <div class="slot slot4"></div>
                    <div class="slot slot5"></div>
                    <div class="slot slot6"></div>
                </div>

                <div class="btn-group btn-group-justified btn-group-casino" role="group">
                    <div id="slotMachineButtonShuffle" type="button" class="btn btn-primary btn-lg">开始</div>
                    <div id="slotMachineButtonStop" type="button" class="btn btn-primary btn-lg">停止</div>
                </div>
            </div>

        </div>
        <div class="clearfix"></div>
    </div>

JS部分

    $(function () {
            //单个停止
            var machine4 = $("#casino1").slotMachine({
                active: 0,
                delay: 500
            });

            var machine5 = $("#casino2").slotMachine({
                active: 1,
                delay: 550
            });

            machine6 = $("#casino3").slotMachine({
                active: 2,
                delay: 600
            });

            var started = 0;

            $("#slotMachineButtonShuffle").click(function () {
                started = 3;
                machine4.shuffle();
                machine5.shuffle();
                machine6.shuffle();
            });

            $("#slotMachineButtonStop").click(function () {
                switch (started) {
                    case 3:
                        machine4.stop();
                        break;
                    case 2:
                        machine5.stop();
                        break;
                    case 1:
                        machine6.stop();
                        break;
                }
                started--;
            });
        });

三、总结

整个过程并不复杂,所有的属性、事件、方法基本看看文档都能很好理解运用,演示代码也没什么好说的,一看就懂。组件本身在一般的系统里面可能很难有用武之地,本篇作为怀旧之作,以此来纪念我们已经逝去的童年。原来制作一个这种简单游戏如此easy,下次年会,你都可以做一个抽奖系统了,只要有图片素材,一个字:简单。至此,本篇基本结束。如果本篇也引起了你的共鸣,不妨推荐哈,欢迎园友拍砖~~

时间: 2024-10-11 05:55:48

JS组件系列——还记得那些年玩过的游戏机吗?(SlotMachine组件简易实现)的相关文章

JS组件系列——又一款MVVM组件:Vue(二:构建自己的Vue组件)

阅读目录 一.为什么组件很重要 二.Vue里面的组件基础知识 1.组件的概念 2.组件原理 3.组件使用 三.封装自己的Component 1.使用Component封装bootstrapTable 2.封装select 3.查看其他Vue框架源码 四.总结 正文 前言:转眼距离上篇 JS组件系列--又一款MVVM组件:Vue(一:30分钟搞定前端增删改查) 已有好几个月了,今天打算将它捡起来,发现好久不用,Vue相关技术点都生疏不少.经过这几个月的时间,Vue的发展也是异常迅猛,不过这好像和博

JS组件系列——分享自己封装的Bootstrap树形组件:jqTree

前言:之前的一篇介绍了下如何封装自己的组件,这篇再次来体验下自己封装组件的乐趣.看过博主博客的园友应该记得之前分享过一篇树形菜单的使用JS组件系列——Bootstrap 树控件使用经验分享,这篇里面第一个Jquery Tree,只是用简单样式和js去实现了效果,没有给出一个系统的封装,这篇博主就来试试在此样式的基础上封装一个稍微完整点的树形组件. 一.组件效果预览 其实效果和之前的那个差不多,博主只是在之前的基础上加了一个选中的背景色. 全部收起 展开 全部展开 二.代码示例 其实效果很简单,重

JS组件系列——Bootstrap文件上传组件:bootstrap fileinput

原文:JS组件系列--Bootstrap文件上传组件:bootstrap fileinput 前言:之前的三篇介绍了下bootstrap table的一些常见用法,发现博主对这种扁平化的风格有点着迷了.前两天做一个excel导入的功能,前端使用原始的input type='file'这种标签,效果不忍直视,于是博主下定决心要找一个好看的上传组件换掉它.既然bootstrap开源,那么社区肯定有很多关于它的组件,肯定也有这种常见的上传组件吧.经过一番查找,功夫不负有心人,还是被博主找到了这个组件:

JS组件系列——自己动手扩展BootstrapTable的 冻结列 功能:彻底解决高度问题

前言:一年前,博主分享过一篇关于bootstrapTable组件冻结列的解决方案  JS组件系列——Bootstrap Table 冻结列功能IE浏览器兼容性问题解决方案 ,通过该篇,确实可以实现bootstrapTable的冻结列效果,并且可以兼容ie浏览器.这一年的时间,不断有园友以及群里面的朋友问过我关于固定高度之后,冻结列页面效果不能对齐的问题,奈何博主太忙,一直没有抽空将这个问题优化.最近项目里面也不断有人提过这个bug,这下子不能再推了,必须要直面“惨淡的bug”,于是昨天利用一天的

JS组件系列——BootstrapTable+KnockoutJS实现增删改查解决方案(二)

前言:上篇 JS组件系列——BootstrapTable+KnockoutJS实现增删改查解决方案(一) 介绍了下knockout.js的一些基础用法,由于篇幅的关系,所以只能分成两篇,望见谅!昨天就觉得应该快点完成下篇,要不然有点标题党的感觉,思及此,博主心有不安,于是加班赶出了下篇.如果你也打算用ko去做项目,且看看吧! 一.效果预览 其实也没啥效果,就是简单的增删改查,重点还是在代码上面,使用ko能够大量节省界面DOM数据绑定的操作.下面是整个整个增删改查逻辑的js代码: 页面效果: 二.

JS组件系列——基于Bootstrap Ace模板的菜单Tab页效果优化

前言:之前发表过一篇  JS组件系列——基于Bootstrap Ace模板的菜单和Tab页效果分享(你值得拥有) ,收到很多园友的反馈,当然也包括很多诟病,因为上篇只是将功能实现了,很多细节都没有处理,这篇博主将带领大家一起来优化这里的效果,使之成为一个可以在项目里面使用的成品. 说点题外话,本来,在互联网模式下,Tab页+iframe的组合是不能被大多数平台接受的,从这些年推出的一些好的产品可以看出,几乎大家都不这么玩,即使是一些后台的管理模板,比如常见的AdminLTE.Ace.INSPIN

JS组件系列——封装自己的JS组件

前言:之前分享了那么多bootstrap组件的使用经验,这篇博主打算研究下JS组件的扩展和封装,我们来感受下JQuery为我们提供$.Extend的神奇,看看我们怎么自定义自己的组件,比如我们想扩展一个$("#id").MyJsControl({})做我们自己的组件,我们该如何去做呢,别急,我们慢慢来看看过程. 一.扩展已经存在的组件 1.需求背景 很多时候,我们使用jquery.ajax的方式向后台发送请求,型如 $.ajax({ type: "post", ur

JS组件系列——表格组件神器:bootstrap table(三:终结篇,最后的干货福利)

前言:前面介绍了两篇关于bootstrap table的基础用法,这章我们继续来看看它比较常用的一些功能,来个终结篇吧,毛爷爷告诉我们做事要有始有终~~bootstrap table这东西要想所有功能覆盖似乎不太现实,博主挑选了一些自认为比较常用的功能在此分享给各位园友.源码也在这篇统一给出.好了,不多说废话,开始我们的干货之旅吧. bootstrap table系列: JS组件系列——表格组件神器:bootstrap table JS组件系列——表格组件神器:bootstrap table(二

JS组件系列——封装自己的JS组件,你也可以!

前言:之前分享了那么多bootstrap组件的使用经验,这篇博主打算研究下JS组件的扩展和封装,我们来感受下JQuery为我们提供$.Extend的神奇,看看我们怎么自定义自己的组件,比如我们想扩展一个$("#id").MyJsControl({})做我们自己的组件,我们该如何去做呢,别急,我们慢慢来看看过程. 一.扩展已经存在的组件 1.需求背景 很多时候,我们使用jquery.ajax的方式向后台发送请求,型如 $.ajax({ type: "post", ur