search
HomeBackend DevelopmentPHP TutorialExample of the dice lottery game implemented by jQuery+PHP, jquery dice_PHP tutorial

Example of dice lottery game implemented by jQuery+PHP, jquery dice

The example in this article describes the detailed steps of the dice lottery game implemented by jQuery+PHP. Share it with everyone for your reference. The specific analysis is as follows:

This game is based on the Monopoly game. It uses jQuery and PHP knowledge to design a lottery effect by throwing dice points. Of course, the lottery probability is controllable. Developers can slightly modify this example. It can be applied to the lottery scenario on the website. The rendering is as follows:

Click here to download the complete example code from this website.

HTML part:

First we need to prepare two dice and prize materials. These authors have already packaged and uploaded them, so please feel free to download them. We will write the following html structure code in the html page. .wrap is used to place the dice and prompt information, and #prize is used to place the prize.

Copy code The code is as follows:



                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  


               
  • Start

  •           
  • Cash 100 yuan

  •           
  • Teddy Bear Baby

  •           
  • Thank you for participating

  •                                                                                                                                                                                                                   
  • laptop

  •            
  • Thank you for participating

  •           
  • SLR camera

  •          
  • car

  •            
  • Thank you for participating







CSS part:

We need to use CSS technology to reasonably standardize the page layout. We surround the prizes in a rectangle with 10 positions in total, and position the two dice in the center of the rectangle. You can directly click on the middle dice during the draw. We can use CSS positioning technology to implement page layout.

Copy code

The code is as follows:

.demo{width:650px; height:420px; margin:60px auto 10px auto; position:relative; }
.wrap{width:200px; height:100px; position:absolute; margin-left:220px; margin-top:140px; z-index:1000;}
#msg{display:none;width:50px; height:20px; padding:4px; background:#ffc; border:1px solid #fc9; 
text-align:center; color:#f30; font-size:18px; position:absolute; z-index:1001; right:-20px; top:-10px}
.dice{width:90px; height:90px; display:block; float:left; background:url(dice.png) no-repeat; cursor:pointer}
#dice_mask{width:200px; height:100px; background:#fff; opacity:0; position:absolute; top:0; left:0; z-index:999}
.dice_1{background-position:-5px -4px}
.dice_2{background-position:-5px -107px}
.dice_3{background-position:-5px -212px}
.dice_4{background-position:-5px -317px}
.dice_5{background-position:-5px -427px}
.dice_6{background-position:-5px -535px}
.dice_t{background-position:-5px -651px}
.dice_s{background-position:-5px -763px}
.dice_e{background-position:-5px -876px}
#prize{position:relative}
#prize li{position:absolute; width:150px; height:112px; border:1px solid #d3d3d3}
#d_0{left:0; top:0}
#d_1{left:160px; top:0}
#d_2{left:320px; top:0}
#d_3{left:480px; top:0}
#d_4{left:480px; top:128px}
#d_5{left:480px; top:256px}
#d_6{left:320px; top:256px}
#d_7{left:160px; top:256px}
#d_8{left:0; top:256px}
#d_9{left:0; top:128px}
.mask{opacity: 0.6; width:150px; height:112px; line-height:32px; background:#ffc; 
z-index:1001; position:absolute; top:0; left:0; text-align:center; font-size:16px}

jQuery部分:

我们使用jQquery来完成前端动作,包括掷色子动画,仿大富翁奖品逐步运动动画,其中有防重复点击知识、ajax交互知识,动画提示知识。整个 操作流程可简单概括为:点击色子->向dice.php发送ajax请求->完成掷色子动画->提示点数->逐步运动动画到最终 奖品位置停止->完成抽奖。

复制代码 代码如下:

$(function(){
    $('#dice').click(function(){
        $('#prize li .mask').remove();
        $('.wrap').append('
');//加遮罩
        var dice1 = $('#dice1');
        var dice2 = $('#dice2');
        $.getJSON('dice.php',function(json){
            var num1 = json[0];
            var num2 = json[1];
            diceroll(dice1,num1);//掷色子1动画
            diceroll(dice2,num2);//掷色子2动画
            var num = parseInt(num1)+parseInt(num2);
            $('#msg').css('top','-10px').fadeIn(500).text(num+'点').animate({top:'-50px'},'1000').fadeOut(500);
            roll(0, num);//逐步运动动画
        });
    });
});

函数diceroll()是一个色子运动动画,在本站前面的文章中已讲解过,就是通过jQuery的animate()实现的位移、延时、变化背景样式来实现的动画效果。

复制代码 代码如下:

function diceroll(dice,num){
Dice.attr('class','dice');//Clear the points after the last animation
dice.css('cursor','default');
dice.animate({left: '+2px'}, 100,function(){
          Dice.addClass('dice_t');
}).delay(200).animate({top:'-2px'},100,function(){
                                                                                  dice.removeClass('dice_t').addClass('dice_s'); }).delay(200).animate({opacity: 'show'},600,function(){
          Dice.removeClass('dice_s').addClass('dice_e');
}).delay(100).animate({left:'-2px',top:'2px'},100,function(){
          Dice.removeClass('dice_e').addClass('dice_'+num);
          dice.css('cursor','pointer');
});
}

The function roll() is very important. Set an interval animation through setInterval() and execute it every 0.5 seconds. The parameter i represents the initial position, and the parameter step represents the number of steps that need to be executed. In this case, it is the number of dice points, that is, the number of steps that need to be taken. We add .mask to the current prize based on i. When the value of i is equal to step, the animation is stopped and the die's mask is removed (to prevent repeated clicks).

Copy code The code is as follows:
function roll(i,step){
var time = setInterval(function(){
If(i>9){
            var t = i - 10;
                     $('#d_'+t).append('
');
                 $('#d_'+(t-1)+' .mask').remove();
          }
           $('#d_'+i).append('
');
           $('#d_'+(i-1)+' .mask').remove();
                                   
If(i==step){
                                                                                                              ,,,,,,,,,,;                  $('#dice_mask').remove();//Remove mask
          }
         i++;//Keep moving forward
},500);
}


PHP part:

What dice.php needs to do is: get the total points based on the configured prize probability, distribute the points of the two dice according to the total points, and finally return the points of the two dice to the front-end page.

Copy code The code is as follows:

//Set the probability of winning
$prize_arr = array(
'2' => array('id'=>2,'v'=>10),
'3' => array('id'=>3,'v'=>20),
'4' => array('id'=>4,'v'=>5),
'5' => array('id'=>5,'v'=>5),
'6' => array('id'=>6,'v'=>20),
'7' => array('id'=>7,'v'=>2),
'8' => array('id'=>8,'v'=>3),
'9' => array('id'=>9,'v'=>20),
'10' => array('id'=>10,'v'=>0),
'11' => array('id'=>11,'v'=>10),
'12' => array('id'=>12,'v'=>5),
);

foreach ($prize_arr as $key => $val) {
$arr[$val['id']] = $val['v'];
}

$sum = getRand($arr); //Get the award id based on probability and get the total points

//Allocate dice points
$arrs = array(
'2' => array(array(1,1)),
'3' => array(array(1,2)),
'4' => array(array(1,3),array(2,2)),
'5' => array(array(1,4),array(2,3)),
'6' => array(array(1,5),array(2,4),array(3,3)),
'7' => array(array(1,6),array(2,7),array(3,4)),
'8' => array(array(2,6),array(3,5),array(4,4)),
'9' => array(array(3,6),array(4,5)),
'10' => array(array(4,6),array(5,5)),
'11' => array(array(5,6)),
'12' => array(array(6,6))
);

$arr_rs = $arrs[$sum];
$i = array_rand($arr_rs);//Randomly pick the array
$arr_a = $arr_rs[$i];
shuffle($arr_a);//Shuffle the order
echo json_encode($arr_a);

The function getRand() is used to calculate probability

Copy code The code is as follows:

//Calculate probability
function getRand($proArr) {
$result = '';

//Total probability accuracy of probability array
$proSum = array_sum($proArr);

//Probability array loop
foreach ($proArr as $key => $proCur) {
          $randNum = mt_rand(1, $proSum);
If ($randNum                 $result = $key;
             break;
         } else {
                $proSum -= $proCur;
          }
}
Unset ($proArr);
Return $result;
}

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/937083.htmlTechArticleJQuery+PHP implemented dice lottery game example, jquery dice This article describes the example of jQuery+PHP implemented Detailed steps of the dice lottery game. Share it with everyone for your reference. Detailed analysis...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
jquery实现多少秒后隐藏图片jquery实现多少秒后隐藏图片Apr 20, 2022 pm 05:33 PM

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

jquery怎么修改min-height样式jquery怎么修改min-height样式Apr 20, 2022 pm 12:19 PM

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

axios与jquery的区别是什么axios与jquery的区别是什么Apr 20, 2022 pm 06:18 PM

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

jquery怎么在body中增加元素jquery怎么在body中增加元素Apr 22, 2022 am 11:13 AM

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

jquery中apply()方法怎么用jquery中apply()方法怎么用Apr 24, 2022 pm 05:35 PM

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

jquery怎么删除div内所有子元素jquery怎么删除div内所有子元素Apr 21, 2022 pm 07:08 PM

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

jquery on()有几个参数jquery on()有几个参数Apr 21, 2022 am 11:29 AM

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。

jquery怎么去掉只读属性jquery怎么去掉只读属性Apr 20, 2022 pm 07:55 PM

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software