-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (101 loc) · 4.67 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<!--
/***
* ______ ___ _ _ ___________ ____________ _____ _ _ ___________
* | _ \/ _ \| | | |_ _| _ \ | ___ | ___ | ___| | | | ___| ___ \
* | | | / /_\ | | | | | | | | | | | |_/ | |_/ | |__ | | | | |__ | |_/ /
* | | | | _ | | | | | | | | | | | ___ | /| __|| | | | __|| /
* | |/ /| | | \ \_/ /_| |_| |/ / | |_/ | |\ \| |___| |_| | |___| |\ \
* |___/ \_| |_/\___/ \___/|___/ \____/\_| \_\____/ \___/\____/\_| \_|
* _ _ _ _ _____
* | | | | | | | | ___|
* __ _____| |__ | |__ | |_ _ __ ___ | |___ \ __ _ _ __ _ __
* \ \ /\ / / _ | '_ \ | '_ \| __| '_ ` _ \| | \ \ / _` | '_ \| '_ \
* \ V V | __| |_) | | | | | |_| | | | | | /\__/ / | (_| | |_) | |_) |
* \_/\_/ \___|_.__/ |_| |_|\__|_| |_| |_|_\____/ \__,_| .__/| .__/
* | | | |
* |_| |_|
*/
-->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mz/X - The Game</title>
<meta name="viewport" content="width=device-width,user-scalable=no">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,300&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<!-- Loading Bootstrap -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/custom.css" rel="stylesheet">
<link rel="shortcut icon" href="images/favicon.ico">
</head>
<body>
<!-- Load the Facebook JavaScript SDK -->
<!--
<div id="fb-root"></div>
<script src='http://connect.facebook.net/en_US/all.js'></script>
-->
<div id="intro">
<img src="images/logo.png">
</div>
<section id="homeView" class=" text-center" >
<div class="navbar navbar-fixed-top">
<div class="container">
<div class="">
<ul class="nav navbar-nav" id="navigation">
<li><span class="GameTitle"></span></li>
</ul>
</div><!--/.navbar-collapse -->
</div>
</div>
<div id="HomeViewControllers" class="btn-group-vertical">
</div>
</section>
<section id="main-view" class="">
<div id="main-id" class="view">
<!-- game canvas -->
</div>
<div class="debug hidden">
<span class="badage">DEBUG</span>
<div id="tagsinput_tagsinput" class="tagsinput " style="height: 100%;">
</div>
</div>
</section>
<section id="settings-view" class="">
<div class="settings-input view container">
<div class="unit">
<h3>Top list</h3>
<table class="table table-bordered" id="scoreTable">
<tbody>
<tr>
<th width="20"></th>
<th>Name</th>
<th width="100">Point</th>
<th width="20">Time</th>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- Modal -->
<div class="modal fade" id="modalDiv" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body panel-body text-center">
<div id="modalBodyContent"></div>
<button type="button" class="btn btn-info" data-dismiss="modal">Close</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<!-- Load JS here for greater good =============================-->
<script src="js/jquery.js"></script>
<script src="js/functions.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="js/game.js"></script>
<script>
Game.init();
</script>
</body>
</html>