-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Pleyo - Jeu du Mémory</title>
<link rel="stylesheet" href="index.css">
<script src="js/lib/pixi.js"></script>
<script src="js/lib/tween.js"></script>
<script src="js/index.js" defer></script>
</head>
<body>
<div id="loading-screen">
<img src="img/loading_icon.svg" alt="Chargement du jeu...">
<span>Chargement du jeu...</span>
<div id="loading-bar"></div>
</div>
<div id="game-info">
<h1>Pleyo <span>Memory</span></h1>
<div id="top-deco"></div>
<div class="info">
<h2>Paires trouvées</h2>
<span><span id="found-pairs">0</span>/<span id="pair-amount">6</span></span>
</div>
<div class="info">
<h2>Nombre de tentatives</h2>
<span id="attempts">0</span>
</div>
<div id="win-banner">
<h2>GAGNÉ !</h2>
</div>
<span id="play-again">Rejouer</span>
<div id="bottom-deco"></div>
</div>
<canvas id="canvas"></canvas>
</body>
</html>