This repository has been archived by the owner on May 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (75 loc) · 3.16 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
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<title>Vizualizace třídění</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,700" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Animated background -->
<div id="background"></div>
<!-- SVG board -->
<div id="board">
<svg>
<g class="scale-layer" transform="scale(1)"></g>
</svg>
</div>
<!-- Buttons in right top corner -->
<div id="buttons">
<input type="range" min="1" max="1000" value="500" class="speed-slider" />
<button><i class="fa fa-fast-backward" aria-hidden="true"></i></button>
<button><i class="fa fa-backward" aria-hidden="true"></i></button>
<button><i class="fa fa-pause" aria-hidden="true"></i></button>
<button><i class="fa fa-forward" aria-hidden="true"></i></button>
<button><i class="fa fa-fast-forward" aria-hidden="true"></i></button>
<button><i class="fa fa-times" aria-hidden="true"></i></button>
</div>
<!-- Text area on the bottom of the page -->
<div id="texts">
<div class="text-help">
</div>
</div>
<!-- Presentation slider -->
<input type="range" min="0" max="0" value="0" class="presentation-slider">
<!-- Overlay menu layer -->
<div id="menu">
<div class="mainmenu menuitem">
<h1>Vizualizace třídicích algoritmů</h1>
<p>Vytvořil Štěpán Stenchlák jako zápočtovou práci do předmětu Programování na MFF UK.</p>
<div class="ref" style="display: none;">
<button class="start">Spustit <span class="title"></span></button>
<h2 class="title">Title</h2>
<p class="description">Some text...</p>
</div>
</div>
<div class="numbermenu menuitem" style="display: none;">
<h1>Ještě je potřeba vybrat prvky...</h1>
<p>Pokud vám nevyhovuje počet, nebo samotná čísla, upravte si je podle sebe. Napište alespoň 5 čísel.</p>
<textarea class="numbers">15 41 98 0 42 3</textarea>
<button class="back">Zpět</button>
<button class="run">Spustit <span class="title"></span></button>
<p>Třídění můžete posouvat šipkami na obrazovce, nebo klávesnici. Dole najdete posuvník. Vpravo nahoře je možnost upravit rychlost.</p>
</div>
</div>
<!-- Scripts -->
<script
src="https://code.jquery.com/jquery-3.3.0.min.js"
integrity="sha256-RTQy8VOmNlT6b2PIRur37p6JEBZUE7o8wPgMvu18MC4="
crossorigin="anonymous"></script>
<script src="js/Animator.js"></script>
<script src="js/Presenter.js"></script>
<script src="js/Actor.js"></script>
<script src="js/TextHelpActor.js"></script>
<script src="js/BackgroundActor.js"></script>
<script src="js/NumberActor.js"></script>
<script src="js/algorithms/Algorithm.js"></script>
<script src="js/algorithms/MergeSortAlgorithm.js"></script>
<script src="js/algorithms/BubleSortAlgorithm.js"></script>
<script src="js/algorithms/InsertionSortAlgorithm.js"></script>
<script src="js/MainMenu.js"></script>
<script src="js/Board.js"></script>
<script src="js/main.js"></script>
</body>
</html>