-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (75 loc) · 3.08 KB
/
index.html
File metadata and controls
86 lines (75 loc) · 3.08 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!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="shortcut icon" href="images/favicon.ico">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Jura:300,400,500,600,700&display=swap">
<link rel="stylesheet" href="assets/reset.css">
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="https://materialdesignicons.com/cdn/5.1.45/css/materialdesignicons.min.css">
<script type="module" src="app/app.js"></script>
</head>
<body>
<div class="invisible">more width required!</div>
<header>
<section class="nav wrapper">
<!-- button to generate bars -->
<button class="nav__gen-btn">Generate Bars</button>
<!-- customize num of bars -->
<label class="nav__num-label">
<span># of Bars</span>
<input type="range" min="10" max="170" value="30">
</label>
<!-- customize the speed -->
<label class="nav__speed-label">
<span>Sorting Speed</span>
<input type="range" min="5" max="100" value="25">
</label>
<!-- select sorting algo -->
<select class="nav__algo-slt">
<!-- 여기에 modifier 추가하면 됨!-->
<option value="mergeSort" class="nav__option--selected" selected>Merge Sort</option>
<option value="quickSort">Quick Sort</option>
<option value="selectionSort">Selection Sort</option>
<option value="insertionSort">Insertion Sort</option>
<option value="bubbleSort">Bubble Sort</option>
</select>
<!-- play/ stop button -->
<div class="nav__ctrl-btn">
<button title="Play">
<i class="mdi mdi-play nav__ctrl-toggle-btn"> PLAY</i>
</button>
<button title="Stop">
<i class="mdi mdi-stop nav__ctrl-stop-btn"> STOP</i>
</button>
</div>
</section>
</header>
<main>
<section class="ani wrapper">
<!-- progress bar -->
<input class="ani__slider" type="range" min="0" max="100" value="0">
<!-- animation rectangle -->
<div class="ani__animation"></div>
</section>
</main>
<!-- link for Github & LinkedIn -->
<footer>
<ul class="credits">
<li>
<a href="https://www.linkedin.com/in/beomjoo-jayden-kim-40a674143/" target="_blank" title="LinkedIn">
<img src="assets/linkedin-logo.png" alt="LinkedIn" />
</a>
</li>
<li>
<a href="https://github.com/beomjookim/sorting-visualizer" target="_blank" title="Github">
<img src="assets/github-logo.png" alt="Github" />
</a>
</li>
</ul>
<span>Beomjoo "Jayden" Kim</span>
</footer>
</body>
</html>