DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML5教程 >> 使用HTML5的Canvas實現圓盤抽獎
使用HTML5的Canvas實現圓盤抽獎
編輯:HTML5教程     
記得之前我們分享過一款基於jQuery的抽獎特效,可以在自己的網站中利用這個特效來給用戶提供一些抽獎活動。今天要分享的也是一款圓盤抽獎應用,不過它是基於HTML5 Canvas的,運行原理也類似,都是利用隨機數原理來實現開獎結果。

體驗效果:http://hovertree.com/texiao/html5/14/


代碼如下:
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>HTML5 Canvas圓盤抽獎效果 - 何問起</title><base target="_blank" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" type="text/css" href="http://hovertree.com/texiao/html5/14/css/main.css">
<script src="http://hovertree.com/ziyuan/jquery/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="http://hovertree.com/texiao/html5/14/js/main.js">
</script>
</head>
<body>
<div class="turnplate_box">
<canvas id="myCanvas" width="300" height="300">浏覽器不支持。</canvas>
<canvas id="myCanvas01" width="200" height="200">浏覽器不支持。何問起</canvas>
<canvas id="myCanvas03" width="200" height="200">浏覽器不支持。</canvas>
<canvas id="myCanvas02" width="150" height="150">浏覽器不支持。hovertree.com</canvas>
<button id="tupBtnHovertree" class="turnplatw_btn"></button>
</div>
<!-- 更改系統默認彈窗 -->
<script type="text/javascript">
window.alert = function(str)
{
var shield = document.createElement("DIV");
shield.id = "shield";
shield.style.position = "absolute";
shield.style.left = "50%";
shield.style.top = "50%";
shield.style.width = "280px";
shield.style.height = "150px";
shield.style.marginLeft = "-140px";
shield.style.marginTop = "-110px";
shield.style.zIndex = "25";
var alertFram = document.createElement("DIV");
alertFram.id="alertFram";
alertFram.style.position = "absolute";
alertFram.style.width = "280px";
alertFram.style.height = "150px";
alertFram.style.left = "50%";
alertFram.style.top = "50%";
alertFram.style.marginLeft = "-140px";
alertFram.style.marginTop = "-110px";
alertFram.style.textAlign = "center";
alertFram.style.lineHeight = "150px";
alertFram.style.zIndex = "300";
strHtml = "<ul style=\"list-style:none;margin:0px;padding:0px;width:100%\">\n";
strHtml += " <li style=\"background:#626262;text-align:left;padding-left:20px;font-size:14px;font-weight:bold;height:25px;line-height:25px;border:1px solid #F9CADE;color:white\">[中獎提醒]</li>\n";
strHtml += " <li style=\"background:#787878;text-align:center;font-size:12px;height:95px;line-height:95px;border-left:1px solid #F9CADE;border-right:1px solid #F9CADE;color:#DCC722\">"+str+"</li>\n";
strHtml += " <li style=\"background:#626262;text-align:center;font-weight:bold;height:30px;line-height:25px; border:1px solid #F9CADE;\"><input type=\"button\" value=\"確 定\" onclick=\"doOk()\" style=\"width:80px;height:20px;background:#626262;color:white;border:1px solid white;font-size:14px;line-height:20px;outline:none;margin-top: 4px\"/></li>\n";
strHtml += "</ul>\n";
alertFram.innerHTML = strHtml;
document.body.appendChild(alertFram);
document.body.appendChild(shield);
this.doOk = function(){
alertFram.style.display = "none";
shield.style.display = "none";
}
alertFram.focus();
document.body.onselectstart = function(){return false;};
}
</script>
<div style="text-align:center;clear:both;margin-top:10px">
<a href="http://hovertree.com/">首頁</a> <a href="http://hovertree.com/texiao/">特效</a>
<a href="http://hovertree.com/menu/html5/">HTML5</a>
<a href="http://hovertree.com/h/bjae/eem0kswx.htm">原文</a>
<a href="http://hovertree.com/map/">導航</a>
</div>
</body>
</html>


HTML5現在是很熱門,附加一道HTML5的題目:http://hovertree.com/shortanswer/bjae/dmjcxkns.htm
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved