-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (59 loc) · 2.5 KB
/
index.html
File metadata and controls
64 lines (59 loc) · 2.5 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
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
<!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" />
<!-- Import for CSS -->
<link rel="stylesheet" href="index.css" />
<!-- Import for scripts avaliable on net -->
<!-- Import for Darkmode.js -->
<script defer src="https://cdn.jsdelivr.net/npm/darkmode-js@1.5.7/lib/darkmode-js.min.js"></script>
<script defer>
function addDarkmodeWidget() {
const options = {
bottom: '64px', // default: '32px'
left: 'unset', // default: '32px'
right: '32px', // default: 'unset'
time: '0.5s', // default: '0.3s'
mixColor: '#eeeeee', // default: '#fff'
backgroundColor: '#eeeeee', // default: '#fff'
buttonColorDark: '#100f2c', // default: '#100f2c'
buttonColorLight: '#fff', // default: '#fff'
saveInCookies: true, // default: true,
label: '🌓', // default: ''
autoMatchOsTheme: false // default: true
}
const darkmode = new Darkmode(options);
darkmode.showWidget();
}
window.addEventListener('load', addDarkmodeWidget);
</script>
<title>Sorting Visualizer</title>
</head>
<body>
<div id="sorting-container"></div>
<div class="functionContainer">
<div class="speedContainer">
<div id="speedText">Speed</div>
<input type="range" id="speed" min="20" max="320" step="50">
</div>
<div class=" buttonContainer">
<button class="btn" onclick="generateArray()">Generate Array</button>
<div class="sortingAlgo">
<button class="btn" onclick="bubbleSort()">Bubble Sort</button>
<button class="btn" onclick="selectionSort()">Selection Sort</button>
<button class="btn" onclick="quickSort()">Quick Sort</button>
<button class="btn" onclick="mergeSort()">Merge Sort</button>
</div>
</div>
</div>
<!-- Main Script -->
<script src="./Scripts/index.js"></script>
<!-- Scripts for Sorting Fns -->
<script src="./Scripts/Algorithms/bubbleSort.js"></script>
<script src="./Scripts/Algorithms/selectionSort.js"></script>
<script src="./Scripts/Algorithms/quickSort.js"></script>
<script src="./Scripts/Algorithms/mergeSort.js"></script>
</body>
</html>