-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Musical labyrinth</title>
<link href="index.css" rel="stylesheet" />
</head>
<body>
<script src="js/three.js"></script>
<script src="js/tween.umd.js"></script>
<script type="module" src="js/musical-labyrinth.js"></script>
<div id="container">
<div id="player"></div>
<div id="debugHover">
<h4> Options </h4>
<div id="debugMenu">
<!-- <h1>Debug menu</h1> -->
<!-- <div id="counter" class="debugOpt">0</div> -->
<button id="audioButton" class="debugOpt" type="button">Mute</button>
<div class="debugOpt">
<input type="range" min="1" max="100" value="100" class="debugOpt" id="volumeSlider">
</div>
<!-- <button id="pauseButton" class="debugOpt" type="button">Pause</button> -->
</div>
</div>
<div id="startMenu">
<h3 class="startOpt">Press play to start!</h3>
<select class="startOpt" name="mapSelect" id="mapSelect"></select>
<select class="startOpt" name="textureSelect" id="textureSelect"></select>
<button id="playButton" class="startOpt" type="button">Play!</button>
</div>
</div>
</body>
</html>