-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 2.23 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./css/style.css" />
<title>Sorting Visualzer</title>
</head>
<body>
<header>
<span
id="randomize"
class="button"
style="border-right: 2.5px #ffffff solid;"
>Randomize/Reset</span
>
<span>Array Size: </span>
<div
class="slidecontainer"
style="border-right: 2.5px #ffffff solid;"
>
<input
type="range"
min="10"
max="200"
value="50"
class="slider"
id="size-slider"
/>
</div>
<span>Sorting Speed: </span>
<div
class="slidecontainer"
style="border-right: 2.5px #ffffff solid;"
>
<input
type="range"
min="10"
max="500"
value="410"
class="slider"
id="speed-slider"
/>
</div>
<span id="sel-sort" class="options-us button">Selection Sort</span>
<span id="bubble-sort" class="options-us button">Bubble Sort</span>
<span id="merge-sort" class="options-us button" hidden
>Merge Sort</span
>
<span id="insert-sort" class="options-us button"
>Insertion Sort</span
>
<span
id="quick-sort"
class="options-us button"
style="border-right: 2.5px #ffffff solid;"
>Quick Sort</span
>
<span id="sort" class="button">Sort</span>
</header>
<main>
<div id="bars-container"></div>
</main>
<footer>
<p>Created By: Ravi Jain</p>
</footer>
<script src="./js/main.js"></script>
</body>
</html>