-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
26 lines (23 loc) · 844 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
26
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<title>BodyPix Implementation</title>
<link href="./style.css" rel="stylesheet" type="text/css" >
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div id="stats"></div>
<div id="info" style="display:none"></div>
<div id="loading">
Please wait while we gather resources to map you!
</div>
<div id="main" style="display:none">
<video id="video" playsinline style="display: none"></video>
<canvas id="output" />
</div>
<ul id="colors" style="display: none"></ul>
<script src="index.js"></script>
</body>
</html>