-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·48 lines (40 loc) · 883 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<title>Motion Detection in JS</title>
<meta charset="utf-8">
<style>
body {
font-family: Monospace;
font-weight: bold;
background-color: #f9f9f9;
margin: 5px;
overflow: hidden;
width: 700px;
margin: 0 auto;
}
#myCam {
display: none;
width: 320px;
height: 240px;
}
canvas {
width: 320px;
height: 240px;
font-family: Arial;
}
#messageArea {
font-size: 36px;
text-align: center;
margin: 20px;
}
</style>
</head>
<body>
<video id="myCam" autoplay></video>
<canvas id="videoCanvas"></canvas>
<canvas id="blendCanvas"></canvas>
<div id="messageArea"> hi</div>
<script type="text/javascript" src='script.js'></script>
</body>
</html>