DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> js實現簡易的單數字隨機抽獎(0-9)
js實現簡易的單數字隨機抽獎(0-9)
編輯:關於JavaScript     
本文分享的網頁特效是一個可以控制開始停止的數字抽獎游戲,類似很多電視上那種數字抽獎游戲,下面就是我分享的全部代碼:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>簡易的單數字隨機抽獎,抽取隨機數的js特效代碼</title>
</head>
<body>
<div id="num"></div>
<input value="start" id="start" type="button" />
<input value="stop" id="stop" type="button" />
<script>
var num = document.getElementById("num");
var start = document.getElementById("start");
var _stop = document.getElementById("stop");
var intv = null;
start.onclick = function(){
 
 if(intv==undefined){
 
 intv = setInterval(function(){num.innerHTML = Math.floor(Math.random()*10);},50);
 
 }
 
}
_stop.onclick = function(){
 
 clearInterval(intv);
 
 intv=null;
 
}
</script>
</body>
</html>
運行效果圖: 初始狀態: 開始之後:

我現在展示的是運行中截的圖,是靜止的,大家可以動手操作,感受一下,會有一點點的成就感哦。

以上就是本文的全部內容,希望大家可以繼續深入學習。

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