-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (37 loc) · 1.5 KB
/
Copy pathindex.html
File metadata and controls
47 lines (37 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bubble Sort</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<!--JQUERY-->
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
</head>
<body>
<h1>Bubble Sort Algorithm Visualizer</h1>
<div id="space"></div>
<div class="sort">
<h2>Array Options</h2>
<ul class="button-list">
<li><button id="bubble-button" class="button" type="button">Sort</button></li>
<li><button id="generate-button" class="button" type="button">Generate New</button></li>
</ul>
</div>
<div class="settings">
<h3>Settings</h3>
<div class="slidecontainer">
<p>Speed</p>
<input type="range" min="1" max="2000" value="1000" class="slider" id="speedRange">
</div>
<div class="slidecontainer">
<p>Size</p>
<input type="range" min="4" max="300" value="14" class="slider" id="sizeRange">
</div>
<button id="dark-button" class="button" type="button">Dark Mode</button>
</div>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script src="animation.js"></script>
</body>
</html>