-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
25 lines (24 loc) · 947 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
<script type="text/javascript" src="jquery.js"></script>
<script type= "text/javascript" src="index.js"></script>
</head>
<body>
<video style="display: none" id="video" autoplay></video>
<div style="position: absolute; top: 0px; left: 0px;">
<canvas id="canvas" width="640" height="480"></canvas>
<br>
<span style="font-size: 17px;">Heart Rate: </span>
<span style="font-size: 17px;" id="heartRate">N\A</span>
<span style="font-size: 17px;"> BPM</span>
</div>
<div style="position: absolute; top: 0px; left: 650px; right: 0px; overflow: hidden">
Data Points:
</div>
<div id="dataPoints" style="position: absolute; top: 20px; left: 650px; right: 0px; overflow: hidden">
</div>
</body>
</html>