基本信息
源码名称:html5老虎机抽奖代码
源码大小:1.37M
文件格式:.zip
开发语言:CSS
更新时间:2020-04-10
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>潭州抽奖游戏</title>
  <style type="text/css" >
		*{
			padding:0;margin:0
		}

		html,body{
			background-image:url(images/bg.png);
		}
		table.game{
			background-color:#5f4021;
			margin:auto;
			margin-top:50px;
		}
		table.game tr td{
			width:110px;
			height:110px;
		}
		table.game tr td.center{
			width:556px;
			height:332px;
			background-image:url(images/center.jpg);
			text-align:center;
		}
		table.game tr td.center a{
			position:relative;
			top:100px;
			text-decoration:none;
			display:inline-block;
			width:150px;
			height:40px;
			border-radius:3px;
			background:#6a2613;
			line-height:40px;
			margin:auto;
			color:white;
			font-family:'Microsoft Yahei';
		}
		table.game tr td.center a:hover{
			background:#481305;
		}
		div.target{
			background:url(images/target.png);
			width:114px;
			height:114px;
			position:absolute;
			top:0px;
			left:0px;
		}
  </style>
 </head>
 <body>
	<table class="game" cellpadding="0" cellspacing="1" border="0">
		<tr>
			<td id="0" style="background:url('images/0.jpg')"></td>
			<td id="1" style="background:url('images/1.jpg')"></td>
			<td id="2" style="background:url('images/2.jpg')"></td>
			<td id="3" style="background:url('images/3.jpg')"></td>
			<td id="4" style="background:url('images/4.jpg')"></td>
			<td id="5" style="background:url('images/5.jpg')"></td>
			<td id="6" style="background:url('images/6.jpg')"></td>
		</tr>
		<tr>
			<td id="19" style="background:url('images/19.jpg')"></td>
			<td class="center" colspan="5" rowspan="3">
				<a href="#" onclick="startRun()">开始抽奖</a>
				<a href="#" onclick="init()">重置</a>
			</td>
			<td id="7" style="background:url('images/7.jpg')"></td>
		</tr>
		<tr>
			<td id="18" style="background:url('images/18.jpg')"></td>
			<td id="8" style="background:url('images/8.jpg')"></td>
		</tr>
		<tr>
			<td id="17" style="background:url('images/17.jpg')"></td>
			<td id="9" style="background:url('images/9.jpg')"></td>
		</tr>
		<tr>
			<td id="16" style="background:url('images/16.jpg')"></td>
			<td id="15" style="background:url('images/15.jpg')"></td>
			<td id="14" style="background:url('images/14.jpg')"></td>
			<td id="13" style="background:url('images/13.jpg')"></td>
			<td id="12" style="background:url('images/12.jpg')"></td>
			<td id="11" style="background:url('images/11.jpg')"></td>
			<td id="10" style="background:url('images/10.jpg')"></td>
		</tr>
	</table>
	<div class="target"></div>
	<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
	<script type="text/javascript" src="js/game.js"></script>
 </body>
</html>