-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (67 loc) · 1.73 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
71
72
73
74
75
76
77
78
<!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>
<header>
<nav>
<div class="header_left">
<h1 class="nav-heading">Sort Visualizer</p>
</div>
<div class="header_right">
<div class="algos">
<button>Bubble</button>
<button>Selection</button>
<button>Insertion</button>
<button>Merge</button>
<button>Quick</button>
<button>Heap</button>
</div>
<div class="array-inputs">
<p>Array size: </p>
<input
id="a_size"
type="range"
min="20"
max="100"
step="1"
value="30"
/>
<p>Visualization speed: </p>
<input
id="a_speed"
type="range"
min="1"
max="5"
step="1"
value="2"
/>
<button id="a_generate">Generate random array</button>
</div>
</div>
</nav>
</header>
<section>
<div id="Info_Cont1">
</div>
<div id="array_container"></div>
<div id="Info_Cont2">
</div>
</section>
<footer></footer>
<script src="./scripts/main.js"></script>
<!--This should be at the end of body and should be loaded before sorts.js-->
<script src="./scripts/visualizations.js"></script>
<!--This should be loaded after main.js-->
<script src="./scripts/bubble_sort.js"></script>
<script src="./scripts/selection_sort.js"></script>
<script src="./scripts/insertion_sort.js"></script>
<script src="./scripts/merge_sort.js"></script>
<script src="./scripts/quick_sort.js"></script>
<script src="./scripts/heap_sort.js"></script>
</body>
</html>