-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (29 loc) · 980 Bytes
/
index.html
File metadata and controls
36 lines (29 loc) · 980 Bytes
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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sorting Visualizer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Sorting Algorithm Visualizer</h1>
<div class="controls">
<label>Array Size:</label>
<input type="range" id="size" min="10" max="80" value="30">
<label>Speed:</label>
<input type="range" id="speed" min="50" max="1000" value="200">
<button onclick="generateArray()">Generate Array</button>
<select id="algorithm">
<option value="bubble">Bubble Sort</option>
<option value="selection">Selection Sort</option>
<option value="insertion">Insertion Sort</option>
</select>
<button id="startBtn">Start</button>
<button id="stopBtn">Stop</button>
<button id="resetBtn">Reset</button>
</div>
<div id="bars" class="bars"></div>
<script src="script.js"></script>
</body>
</html>