-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (61 loc) · 2.16 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
</html>
<!DOCTYPE html>
<!--
***************************************
DONE BY:- Sachin Chabuey
E-MAIL:- [email protected]
***************************************
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sorting Visualizer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="array-inputs">
<p>Size of the array:</p>
<input id="a_size" type="range" min=20 max=150 step=1 value=80>
<p>Speed of the algorithm:</p>
<input id="a_speed" type="range" min=1 max=5 step=1 value=4>
<button id="a_generate">Generate New Array!</button>
</div>
<div class="header_right">
<p class="nav-heading">Sorting Visualizer</p>
<div class="algos">
<button >Bubble</button>
<button >Selection</button>
<button >Insertion</button>
<button >Merge</button>
<button >Quick</button>
<button style="margin-right: 0px;">Heap</button>
</div>
</div>
</nav>
</header>
<section>
<div id="Info_Cont1">
<p></p>
</div>
<div id="array_container">
</div>
<div id="Info_Cont2">
<p></p>
</div>
</section>
<footer>
<p>Made With 💗<br>By Sachin Chabuey
<a href="https://github.com/sachinchaubey" target="_blank"><br>Github Link</a></p>
</footer>
<script src="js_files/main.js"></script> <!--This should be at the end of body and should be loaded before sorts.js-->
<script src="js_files/visualizations.js"></script> <!--This should be loaded after main.js-->
<script src="js_files/bubble.js"></script>
<script src="js_files/selection.js"></script>
<script src="js_files/insertion.js"></script>
<script src="js_files/merge.js"></script>
<script src="js_files/quick.js"></script>̥
<script src="js_files/heap.js"></script>
</body>
</html>