-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.15 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" />
<title>Sorting Algorithm Visualizer</title>
</head>
<body>
<canvas id="canvas"></canvas>
<div class="monitor">
<h1 id="algName"></h1>
<h3 id="timeElapsed"></h3>
</div>
<div class="menu">
<label for="algorithms">Algorithm</label>
<select class="setting" id="algorithms">
</select>
<label for="speed">Speed</label>
<input class="setting" type="range" id="speed" min="1" max="200" value="200" />
<label for="n">Number of Elements</label>
<input class="setting" type="range" id="n" min="10" max="8192" value="100" />
<label for="volume">Sound Volume</label>
<input class="setting" type="range" id="volume" min="0" max="1" value="1" step="0.01" />
<label for="soundType">Sound Type</label>
<select class="setting" id="soundType">
<option>Highlighted index</option>
<option>Highlighted value</option>
</select>
<button id="startBtn">Start!</button>
</div>
<script src="index.js"></script>
</body>
</html>