-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 910 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=no">
<title>贪吃蛇</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div id="title">
<!--
作者:abc_xf@126.com
时间:2016-10-17
描述:app用的帽子
-->
贪吃蛇
</div>
<div id="main">
<div class="relative">
<div id="view"></div>
<p>
<nobr>
分数:
<span id="score">0</span>
</nobr>
<nobr>
<a id='load'>刷新</a>
</nobr>
<br />
</p>
<p>
</p>
</div>
<div id="kz">
<input class="opacity0" type="button" value="空">
<input id="up" type="button" value="上">
<br>
<input id="left" type="button" value="左">
<input id="bottom" type="button" value="下">
<input id="right" type="button" value="右">
</div>
</div>
</body>
<script src="js/tcs.js"></script>
</html>