-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (39 loc) · 1.34 KB
/
index.html
File metadata and controls
47 lines (39 loc) · 1.34 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="ru">
<head>
<meta charset="UTF-8">
<title>Processing of parts by conveyor</title>
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/Chart.css">
<link rel="stylesheet" href="styles/loader.css">
</head>
<body>
<div class="table"></div>
<!-- <div class="permutation"></div>-->
<div class="buttons">
<button id="drawChart">Draw chart</button>
<button id="fillRandom">fill table with random values</button>
</div>
<div class="gantt"></div>
<figure class="highcharts-figure">
<div id="container"></div>
</figure>
<div class="output">
<p class="result"></p>
<p class="permutation"></p>
</div>
<div class="loader">
<div class="container">
<div class="yellow"></div>
<div class="red"></div>
<div class="blue"></div>
<div class="violet"></div>
</div>
</div>
<script type="module" src="scripts/script.ts"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>
<script src="https://code.highcharts.com/modules/accessibility.js"></script>
</body>
</html>