-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (54 loc) · 1.63 KB
/
index.html
File metadata and controls
57 lines (54 loc) · 1.63 KB
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>
<head>
<title>Memory Game</title>
<meta charset="utf-8">
<link rel="stylesheet/less" type="text/css" href="style.less"/>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>
<script src="./lib/bootstrap-2.3.2/js/bootstrap.min.js"></script>
<script src="./lib/less-1.3.3/less-1.3.3.min.js"></script>
<script src="./lib/i18next-1.6.3/i18next-1.6.3.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="window">
<div id="tiles"></div>
<div id="panel">
<button id="reset-game">
<i class="icon-refresh"></i><br/>
<span data-i18n="reset-game"></span><br/>
</button>
<button id="end-game">
<i class="icon-stop"></i><br/>
<span data-i18n="end-game"></span>
</button>
<button id="level-up">
<i class="icon-th-large"></i><br/>
<span id="level">4 x 4</span>
</button>
<button id="language">
<i class="icon-flag"></i><br/>
<span data-i18n="language"></span>
</button>
<div id="stats">
<div class="seconds stat">
<i class="icon-time"></i>
<span class="value">0</span>
<div class="progress-bar"></div>
</div>
<div class="clicks stat">
<i class="icon-hand-up"></i>
<span class="value">0</span>
<div class="progress-bar"></div>
</div>
<div class="score stat">
<i class="icon-trophy"></i>
<span class="value">0</span>
<div class="progress-bar"></div>
</div>
</div>
</div>
</div>
</body>
</html>