This repository has been archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.html
36 lines (36 loc) · 1.64 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 lang="fr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Maze 3D</title>
<meta name="description" content="Maze 3D for WebGL with Three.js" />
<meta name="author" content="Yannick Comte" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" media="screen" href="assets/css/style.css" />
</head>
<body>
<img style="display:none" src="assets/images/preview-laby.png" alt="sharing image" />
<div id="canvasContainer">
<div id="joypad">
<div class="top">
<span class="joykey" id="keyup"><img src="assets/images/pad/kbup.png" /></span>
</div>
<div class="bottom">
<span class="joykey" id="keyleft"><img src="assets/images/pad/kbleft.png" /></span>
<span class="joykey" id="keydown"><img src="assets/images/pad/kbdown.png" /></span>
<span class="joykey" id="keyright"><img src="assets/images/pad/kbright.png" /></span>
</div>
</div>
</div>
<audio id="bumpSound">
<source src="assets/sound/bat.mp3" />
<source src="assets/sound/bat.ogg" />
</audio>
<script src="assets/js/three.min.js"></script>
<script src="assets/js/Demonixis.Input.js"></script>
<script src="assets/js/Demonixis.Minimap.js"></script>
<script src="assets/js/Demonixis.GameHelper.js"></script>
<script src="assets/js/maze3d.js"></script>
</body>
</html>