-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (43 loc) · 1.01 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
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>Minecraft Camera</title>
<meta name="description" content="you, but in like, minecraft" />
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<style>
#overlay {
position: relative;
top: 0;
left: 0;
display: block;
margin: 0 auto;
}
#container {
margin: 0px auto;
width: 1280px;
height: 960px;
border: 10px #333 solid;
}
#videoPlayer {
width: 640px;
height: 480px;
display: none;
}
h1 {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1>Epik Gamer Cam</h1>
<div id="video-container">
<video id="videoPlayer" autoplay="true" onload="startVid();"></video>
<canvas id="overlay" height="960" width="1280"></canvas>
<div id="camera-denied">Access to your camera was denied, please enable or i will cri</div>
</div>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>