-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (54 loc) · 2.14 KB
/
index.html
File metadata and controls
66 lines (54 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Визуализатор сортировок</title>
<script src="jQuery.js"></script>
<script src="sortUtils.js"></script>
<script src="sorts/bubbleSort.js"></script>
<script src="sorts/selectionSort.js"></script>
<script src="sorts/insertionSort.js"></script>
<script src="sorts/quickSort.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main-wrap">
<div class="wrap">
<div class="menu">
<select class="sort-selector">
</select>
<select class="generator-selector">
<option selected>Random</option>
<option>Sinusoidal</option>
<option>Line</option>
</select>
<button class="start-button">Start</button>
<button class="generate-button">Generate</button>
<button class="terminate-button">Terminate</button>
<label class="sort-delay-select-area">
<span>Visualization delay (in milliseconds) :</span>
<input class="sort-delay-input" type="text" maxlength="4" onkeypress="return isNumberKey(event)">
</label>
<label class="element-count-setter">
<span>Elements count :</span>
<input class="element-count-input" type="text" maxlength="2" onkeypress="return isNumberKey(event)">
</label>
<label class="max-element-setter">
<span>Max element value :</span>
<input class="max-element-input" type="text" maxlength="4" onkeypress="return isNumberKey(event)">
</label>
</div>
<div class="working-area">
<div class="elements">
</div>
</div>
<div class="message-area">
<div class="message"></div>
</div>
</div>
<div class="explanation">
</div>
</div>
</body>
</html>