-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 2.38 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 2.38 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
<!DOCTYPE html5>
<html>
<head>
<title>Document</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,100&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="Complex.js"></script>
<script type="text/javascript" src="FormParser.js"></script>
<script type="text/javascript" src="Grid.js"></script>
<script type="text/javascript" src="Engine.js"></script>
<script type="text/javascript" src="Arrow.js"></script>
</head>
<body>
<header>
<h1>Построение векторной диаграммы токов и напряжений</h1>
</header>
<canvas id="canv"></canvas>
<div id="input">
<table>
<thead>
<tr>
<th class="switcher"><span class="I selected">I</span> / <span class="U">U</span></th>
<th><span class="p">I</span><sub>1</sub> , кА</th>
<th><span class="p">I</span><sub>2</sub> , кА</th>
<th><span class="p">I</span><sub>0</sub> , кА</th>
</tr>
</thead>
<tbody>
<tr>
<th>Фаза A</th>
<td><input class="p1 A"/></td>
<td><input class="p2 A"/></td>
<td><input class="p0 A"/></td>
</tr>
<tr>
<th>Фаза B</th>
<td><input class="p1 B"/></td>
<td><input class="p2 B"/></td>
<td><input class="p0 B"/></td>
</tr>
<tr>
<th>Фаза C</th>
<td><input class="p1 C"/></td>
<td><input class="p2 C"/></td>
<td><input class="p0 C"/></td>
</tr>
</tbody>
</table>
<button id="drawButton">Построить</button>
<button id="saveButton">Сохранить</button>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>