-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
80 lines (80 loc) · 2.96 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
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Algorithms Visualizer</title>
<link rel="stylesheet" href="./css-style/background.css">
<link rel="stylesheet" href="./css-style/canvas.css">
<link rel="stylesheet" href="./css-style/control.css">
<link rel="stylesheet" href="./css-style/tooltip.css">
<!-- Dropdown Icon -->
<link href='https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css' rel='stylesheet'>
</head>
<header>
<a id="h1" href="../../index.html" ><h1>Algorithms Visualizer</h1></a>
<div class="algorithms">
<a href="./">Sorting</a>
<a href="../graph/index.html">Graph</a>
</div>
</header>
<main>
<div class="button_container">
<div class="box">
<div class="slider" id="slider_books">
<input id="number_book_input" type="Range" min="3" max="50" value="20">
</div>
<div class="content" id="content_book_slider">
<label for="number_book_input">There are: </label>
<div class="value" id="value_books">20 books.</div>
</div>
</div>
<div class="box">
<div class="slider" id="slider_time">
<input id="time_input"type="Range" min="10" max="500" value="100" step="10" >
</div>
<div class="content" id="content_time_slider">
<label for="time_input">Speed: </label>
<div class="value" id="value_time">100ms</div>
</div>
</div>
<div class="button-box">
<div id="above-buttons">
<div class="select">
<select name="format" id="format">
<option selected disabled>Pick a sorting style</option>
<option value="bubble">Bubble Sort</option>
<option value="insertion">Insertion Sort</option>
<option value="quick">Quick Sort</option>
<option value="selection">Selection Sort</option>
</select>
</div>
</div>
<div id="below-buttons">
<button data-tooltip="Go" id="go-button">
<img src="./css-style/icons/go-button.png" alt="Go">
</button>
<button data-tooltip="Reset" id="reset-button">
<img src="./css-style/icons/reset-button.png" alt="Reset">
</button>
<button data-tooltip="Random" id="random-button">
<img src="./css-style/icons/random-button.png" alt="Random">
</button>
<button data-tooltip="Worst case" id="worst-case-button">
<img src="./css-style/icons/worst-case-button.png" alt="Worst Case">
</button>
</div>
</div>
</div>
<div class="warning"> </div>
<div class="canvas">
<div class="container">
<div id="augmented_container"> </div>
<div id="bookshelf_container"> </div>
</div>
</div>
</main>
<footer>
</footer>
<script src="../../dest/sort/code/main.js" type="module" defer></script>
</html>