-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Stacker</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="game" id="gameContainer">
<form id="configForm">
<p class="info">Changes on the speed value will be taken into account in the next game.</p>
<p><label for="speedRange">Speed</label><input id="speedRange" type="range" min="20" max="100"></p>
<p><label for="bgColor">Background color</label><input id="bgColor" type="color"></p>
<p><label for="musicVolume">Music volume</label><input id="musicVolume" type="range" min="0" max="100"></p>
<p><label for="effectsVolume">Effects volume</label><input id="effectsVolume" type="range" min="0"
max="100"></p>
<p><input type="submit" class="configFormButton" value="Save changes"></p>
<p><input type="reset" class="configFormButton" value="Set default values"></p>
</form>
<div id="gameClickable"></div>
</div>
<script src="ts-built/main.js" type="module"></script>
<script src="ts-built/Game.js" type="module"></script>
</body>
</html>