forked from moskito-s/moskito-s.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (34 loc) · 1.11 KB
/
index.html
File metadata and controls
61 lines (34 loc) · 1.11 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
<html>
<head>
<meta
name='viewport'
content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0'
/>
<link rel="stylesheet" href="main.css">
<title>Online Pulsmessung</title>
</head>
<body>
<div id = "Error_Item">
<section id="Errortext_Item">ERROR</section>
</div>
<video id="video" width="0" height="0" autoplay></video>
<section id = "Obere_Flexbox">
<section id="Überschrift_Item">
Ruhepulsmessung
</section>
<section id="Anleitung_Item">
Damit der Service funktioniert, muss der Zugriff auf die Kamera zugelassen werden
</section>
<canvas id="Canvas_Item" width="50" height="50" style="border:1px solid #000000;" ></canvas>
</section>
<button id ="Button_measurement" onclick="measurement()" >Messung starten</button>
<div id="Plot_Item" >
</div>
<section id = "Untere_Flexbox">
<div class = "info_text" id="infoMeasurement" ></div>
<div class = "info_text" id="valueMeasurement" ></div>
</section>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="Funktionen.js"></script>
</body>
</html>