-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (31 loc) · 1.08 KB
/
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>pizzaCatcherJS - Catch the pizza!</title>
<link rel="stylesheet" href="style/style.css">
<script src="src/tracking-min.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
</head>
<body>
<div id='fullcontainer'>
<div>
<img id='ming' src='images/ming.png' height='200'>
</div>
<div id='startbuttondiv'>
<button id='start' onclick="onTimer();addScore()">Start New Game</button>
</div>
<strong id="mycounter"></strong>
<div id='site' class='beginning'>
<video id="webcam" autoplay="true" width="100%" autoplay></video>
<!-- top right corner of screen is 0,0, bottom left is width,height -->
<div id="pizzaZone"></div>
</div>
<strong id='score'></strong>
</div>
<footer id='footer'>© 2016 Sam Wheeler and Anuj Shah</footer>
<script src='src/video.js'></script>
<script src='src/main.js'></script>
<script src='src/start.js'></script>
</body>
</html>