-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (60 loc) · 2.19 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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>Jewel Warrior</title>
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/fontfaces.css" />
<link rel="stylesheet" href="styles/mobile.css"
media="screen and (max-device-width: 768px)
and (orientation: portrait),
screen and (max-device-width: 1024px)
and (orientation: landscape)" />
<script src="scripts/modernizr.js"></script>
<script src="scripts/loader.js"></script>
</head>
<body>
<div id="game">
<div class="background"></div>
<div class="screen" id="splash-screen">
<h1 class="logo">Jewel <br/>Warrior</h1>
<!-- TODO: the div below will be like <progress class="loader" value="0" max="100" /> -->
<div class="progress">
<div class="indicator"></div>
</div>
<span class="continue">Click to continue</span>
</div>
<div class="screen" id="main-menu">
<h2 class="logo">Jewel <br/>Warrior</h2>
<ul class="menu">
<li><button name="game-screen">Play</button>
<li><button name="hiscore">Highscore</button>
<li><button name="about">About</button>
<li><button name="exit-screen">Exit</button>
</ul>
</div>
<div class="screen" id="game-screen">
<div class="game-board jewel-size">
<div class="announcement"></div>
</div>
<div class="game-info">
<label class="level">Level: <span></span></label>
<label class="score">Score: <span></span></label>
</div>
<div class="time progress"><div class="indicator"></div></div>
</div>
<div class="screen" id="high-scores"></div>
<div class="screen" id="install-screen">
<h1 class="logo">Jewel <br/>Warrior</h1>
<span>
Click the <img src="images/install-icon.png" alt="Install icon">
button to install the game to your home screen.
</span>
</div>
<div id="jewel-proto" class="jewel-size"></div>
</div>
</body>
</html>