-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
77 lines (74 loc) · 2.63 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/index.css" />
<title>Wanned - Le jeu de gros Wanned</title>
</head>
<body>
<section id="story">
<p>
A l’ecole du web, Hetic, a Montreuil, La Wifi ne fonctionne pas depuis
maintenant 3 jours.
</p>
<div id="progress-bar"></div>
</section>
<div class="menu screen-choices">
<h1>WANNED</h1>
<div class="menu-buttons choices-buttons">
<div class="menu-button choice-button launch">
<button>Commencer</button>
</div>
<div class="menu-button choice-button credits">
<button>Credits</button>
</div>
<div class="menu-button choice-button quit">
<button>Quitter</button>
</div>
</div>
<div class="credits-container hide">
<a href="https://github.com/baptistedph" target="_blank"
><p class="name">Baptiste<span>DAUPHOUY</span></p></a
>
<a href="https://github.com/arthur-fontaine" target="_blank"
><p class="name">Arthur <span>FONTAINE</span></p></a
>
<a href="https://github.com/tralalavico" target="_blank"
><p class="name">Victor <span>HUANG</span></p></a
>
<a href="https://github.com/Nangaim" target="_blank"
><p class="name">Thierry <span>MAIGNAN</span></p></a
>
<a href="https://github.com/Cammyxalot" target="_blank"
><p class="name">Fabien <span>RENOIR</span></p></a
>
<a href="https://github.com/anthony-rgs" target="_blank"
><p class="name">Anthony <span>RINGRESSI</span></p></a
>
<button class="menu-button choice-button back-button">Retour</button>
</div>
<div class="confirm-container hide">
<p>Etes-vous sur de vouloir quitter ?</p>
<div class="confirm-buttons">
<button class="yes">Oui</button>
<button class="no">Non</button>
</div>
</div>
</div>
<div id="load"></div>
<div class="cursor"><img src="cursor.png" alt="cursor" /></div>
<canvas id="wanned"></canvas>
<div id="light" class="hidden"></div>
<div id="fog" class="hidden"></div>
<span id="key-info"></span>
<div id="keys-container">
<div id="controls-container"></div>
<div id="other-keys-container"></div>
</div>
<div id="mobile-not-available">
<h2>Nous sommes navres mais Wanned n'est pas disponible sur mobile.</h2>
</div>
<script src="js/index.js" type="module"></script>
</body>
</html>