-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.06 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.06 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
<html>
<head>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Courier New', Courier, monospace;
font-size: 24px;
}
canvas {
border: black solid thin;
/* position: absolute; */
/* top: 0; */
/* left: 0; */
background-color: transparent;
transform: scaleX(-1);
float: left;
}
video {
/* opacity: 0; */
transform: scaleX(-1);
}
</style>
<script src="tfjs.js"></script>
<script src="posenet.js"></script>
</head>
<body>
<video id="myVideo" muted="muted"></video>
<canvas id="myCanvas" width="600" height="600"></canvas>
<p>BOXES: <strong id="boxes"></strong></p>
<p>SCORE: <strong id="score"></strong></p>
</body>
<script src="game.js"></script>
</html>