-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (54 loc) · 3.36 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html xml:lang="zh-CN" lang="zh-CN">
<head>
<title>六角转盘</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, minimal-ui"/>
<meta property="og:site_name" content="六角转盘" />
<meta property="og:title" content="Hextris" />
<meta property="og:type" content="website" />
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style/style.css">
<link rel="stylesheet" href="style/fa/css/font-awesome.min.css">
<script type = 'text/javascript' src="vendor/hammer.min.js"></script>
<script type = 'text/javascript' src="vendor/jsonfn.min.js"></script>
<script type = 'text/javascript' src="vendor/keypress.min.js"></script>
<script type = 'text/javascript' src="vendor/jquery.js"></script>
<script type = 'text/javascript' src="js_v9/save-state.js"></script>
<script type = 'text/javascript' src="js_v9/view.js"></script>
<script type = 'text/javascript' src="js_v9/wavegen.js"></script>
<script type = 'text/javascript' src="js_v9/math.js"></script>
<script type = 'text/javascript' src="js_v9/Block.js"></script>
<script type = 'text/javascript' src="js_v9/Hex.js"></script>
<script type = 'text/javascript' src="js_v9/Text.js"></script>
<script type = 'text/javascript' src="js_v9/comboTimer.js"></script>
<script type = 'text/javascript' src="js_v9/checking.js"></script>
<script type = 'text/javascript' src='js_v9/update.js'></script>
<script type = 'text/javascript' src='js_v9/render.js'></script>
<script type = 'text/javascript' src="js_v9/input.js"></script>
<script type = 'text/javascript' src="js_v9/main.js"></script>
<script type = 'text/javascript' src="js_v9/initialization.js"></script>
<script type = 'text/javascript' charset = 'utf-8' src = 'cordova.js'></script>
</head>
<body>
<canvas id="canvas"></canvas>
<div id='devtools' style='z-index:3;display:none;position:absolute;left:50%;width:400px;height:400px;top:50%;margin-top:-200px;margin-left:-200px;'>
<h2 id = 'clickToExit' style = 'background-color:#fff;color:#000'>Click to exit</h2>
<textarea id ='devtoolsText' style = 'height:300px;width:400px;'></textarea>
</div>
<div class="faded overlay"></div>
<!-- <div id="attributions">Started by <a href="http://github.com/teamsnowman" target="_blank">@teamsnowman</a> at <a href= 'http://www.hackexeter.com/' target="_blank">HackExeter</a><br>
Finished by <a href="http://github.com/meadowstream" target="_blank">Logan Engstrom</a> & <a href='http://github.com/garrettdreyfus' target="_blank">Garrett Finucane</a> on <a href = 'http://github.com/hextris/hextris' target="_blank">GitHub</a><br>
</div> -->
<div id='startBtn' style='position:absolute;left:40%;top:38%;height:25%;width:25%;z-index:99999999;cursor:pointer;'></div>
<div id="helpScreen" class = 'unselectable'>
<h1 class = 'instructions_body'> <br/> </h1>
<p class = 'instructions_body' id = 'inst_main_body'></p>
</div>
<div id="openSideBar" class = 'helpText'><i class="fa fa-info-circle fa-lg"></i> <i class="fa fa-arrow-left"><b> 玩法</b></i></div>
<div class="faded overlay"></div>
<div id = 'pauseBtn'><div id = 'pauseBtnInner'><i class="fa fa-pause fa-2x"></i></div></div>
<div id = 'restartBtn'><div id = 'restartBtnInner'><i class="fa fa-refresh fa-2x"></i></div></div>
<div id="bottombar">
</div>
</body>
</html>