-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (63 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demon Slayer</title>
<link rel="shortcut icon" href="./src/imagens/demonslayer-logo.png" type="image/x-icon">
<link rel="stylesheet" href="./src/css/transition.css">
<link rel="stylesheet" href="./src/css/mobile.css">
<link rel="stylesheet" href="./src/css/menu.css">
<link rel="stylesheet" href="./src/css/fonts.css">
<link rel="stylesheet" href="./src/css/reset.css">
<link rel="stylesheet" href="./src/css/animations.css">
</head>
<body>
<!-------------------------------- MOBILE WARNING ------------------------------>
<div class="mobile">
<div class="warning">
<h1>THIS GAME DOESN'T HAVE MOBILE SUPPORT!</h1>
<p>To play you need a keyboard and a friend to go against you. <span>:/</span></p>
<div class="inosuke-box">
<img class="speech" src="src/imagens/pixel-speech-bubble.gif" alt="">
<img class="inosuke" src="src/imagens/inosuke-beating.gif" alt="">
</div>
</div>
</div>
<div id="loading-screen" class="loading-screen">
<img id="whoosh-fx" class="whoosh-fx"src="./src/imagens/whoosh.png" alt="">
<div id="loading-content" class="loading-content">
<img id="chibiImg" src="" alt="">
<p>Now Loading</p>
</div>
</div>
<div class="container">
<div class="illustration">
<img src="src/imagens/menu-illustration.png" aria-hidden="true"/>
</div>
<nav class="menu">
<form>
<label for="resolucao">Refresh rate</label>
<select name="resolucao" id="resolucao">
<option value="1920x1080">120 Hz</option>
<option value="1280x720">60 Hz</option>
</select>
</form>
<img class="logo" src="src/imagens/demonslayer-logo.png" alt="Demon Slayer">
<ul class="button-list">
<li><button class="active" onclick="startGame()">Start Game</button></li>
<li><button class="inactive">Options</button></li>
<li><button class="inactive">Tutorial</button></li>
<li><button class="inactive" onclick="openCredits()">Credits</button></li>
</ul>
<div class="footer">
<p>©JhonFXA</p>
<p class="version">ALPHA</p>
</div>
</nav>
</div>
<script src="src/js/transition.js"></script>
<script src="src/js/index.js"></script>
</body>
</html>