This repository was archived by the owner on Jul 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (59 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<table id="wrapper">
<tr>
<th class="header"></th>
<th class="header">Konz 1</th>
<th class="header">Ziel</th>
<th class="header">Konz 2</th>
</tr>
<tr>
<th colspan="2">Gesamt [ml]</th>
<td><input type="number" id="total" oninput="calc();"></td>
<td></td>
<td></td>
</tr>
<tr>
<th>Ausgang [c]</th>
<td><input type="number" id="start_1" oninput="calc();"></td>
<td></td>
<td><input type="number" id="start_2" oninput="calc();"></td>
</tr>
<tr>
<th>Ziel [c]</th>
<td></td>
<td><input type="number" id="target" oninput="calc();"></td>
<td></td>
</tr>
<tr>
<th>Verhältnis</th>
<td><input type="number" id="ratio_1" readonly></td>
<td></td>
<td><input type="number" id="ratio_2" readonly></td>
</tr>
<tr>
<th>Menge [ml]</th>
<td><input type="number" id="quantity_1" readonly></td>
<td></td>
<td><input type="number" id="quantity_2" readonly></td>
</tr>
<tr>
<th>Anteil [%]</th>
<td><input type="number" id="share_1" readonly></td>
<td></td>
<td><input type="number" id="share_2" readonly></td>
</tr>
</table>
<br><br>
<b>Anleitung:</b><br>
1. Lange drücken zum kopieren<br>
2. Gedrückt halten und nach links wischen um alle Nachkommastellen zu sehen<br>
3. Querformat zeigt mehr Nachkommastellen auf einmal an
<script type="text/javascript" src="main.js"></script>
</body>
</html>