DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> WEB網站前端 >> 網頁特效代碼 >> jQuery實現玩家幸運抽獎活動
jQuery實現玩家幸運抽獎活動
編輯:網頁特效代碼     
簡介:jQuery自定義數值抽獎活動代碼是一款點擊開始按鈕計算機會產生玩家輸入范圍內的隨機數,點擊停止按鈕,將顯示數字最終結果的效果。

使用例子,比如一個班有50位同學,從0到49編號,那麼點擊開始後,輸入50,點擊確定,然後點擊停止,顯示的三個數字分別對應同學的編號,可以是一二三等獎。

效果展示

效果圖如下:


代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jQuery自定義數值抽獎活動代碼 - 何問起</title><base target="_blank" />

<script type="text/javascript" src="http://down.hovertree.com/jquery/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="http://hovertree.com/texiao/jquery/76/pjs_01.js"></script>
<style type="text/css">
#bigDiv {
width: 1080px;
margin: 0px auto; /*div網頁居中*/
background-color: #494949;
color: #FFFFFF;
}

h1 {
text-align: center; /*文本居中*/
padding-top: 10px;
}

#first, #second, #third {
width: 360px;
height: 360px;
font-size: 150px;
line-height: 360px;
text-align: center;
float: left; /*讓三個盒子左浮動*/
}

#first {
background-color: #009BFF;
opacity: 0.9;
}

#second {
background-color: #007CCC;
}

#third {
background-color: #005388;
}

input {
font-size: 30px;
font-weight: 900;
}

#start {
margin-left: 40%;
margin-right: 5%;
}a{color:blue;}
</style>

</head>
<body>
<div id="bigDiv">
<h1>玩家幸運抽獎活動</h1>
<div id="first"></div>
<div id="second"></div>
<div id="third"></div>
<input type="button" value="開始" id="start">
<input type="button" value="停止" id="stop" disabled="disabled">
</div>

<div style="text-align:center;margin:50px 0; font:normal 14px/24px 'MicroSoft YaHei';">
<p>適用浏覽器:IE8、360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗.</p>
<p>來源: <a href="http://hovertree.com">何問起</a>
<a href="http://hovertree.com/texiao/">特效庫</a>
<a href="http://hovertree.com/h/bjaf/07a7l2on.htm">代碼說明</a></p>
</div>
</body>
</html>



js文件代碼如下:
/**
* Created by 何問起 午後的陽光 on 2016/5/14.
*/
var ran = 0;
var range = 0;
var myNumber;
/*將產生隨機數的方法進行封裝*/
function sjs(range) {
ran = Math.random() * range;//[0,range)的隨機數
var result = parseInt(ran);//將數字轉換成整數
return result;
}
/*對顯示隨機數的方法進行封裝*/
function showRandomNum() {
var figure = sjs(range);
$("#first").html(figure);
var figure2 = sjs(range);
$("#second").html(figure2);
var figure3 = sjs(range);
$("#third").html(figure3);
}
$(function () {
/*點擊開始按鈕,產生的事件*/
$("#start").click(function () {

range = prompt("請輸入隨機數范圍:", "168");

if (range == null)//http://hovertree.com/h/bjaf/3siyd3x7.htm
{
return;
}

if (range == 0)
{
return;
}

if (isNaN(range))//http://hovertree.com/h/bjaf/9vhm2l4f.htm
{
alert("請輸入數字");
return ;
}
/*將開始標簽禁用,停止標簽啟用*/
$("#start")[0].disabled = true;
$("#stop")[0].disabled = false;
if (range > 9999 || range<-999)
{
// by 何問起
$("#bigDiv div").css("font-size", "60px");//http://hovertree.com/h/bjaf/omgdn4mu.htm
//return;
}
myNumber = setInterval(showRandomNum, 50);//多長時間運行一次,單位毫秒
});
/*點擊結束按鈕*/
$("#stop").click(function () {
/*將開始標簽啟用,停止標簽禁用*/
$("#start")[0].disabled = false;
$("#stop")[0].disabled = true;
clearInterval(myNumber);
});
});

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved