-
Notifications
You must be signed in to change notification settings - Fork 0
/
camerawithmatterboob.html
53 lines (33 loc) · 1.12 KB
/
camerawithmatterboob.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
49
50
51
52
53
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Gelly circle</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<canvas id="degas" style="position: absolute"></canvas>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='p5.min.js'></script>
<script src='matter.js'></script>
<script src='https://s3-us-west-2.amazonaws.com/s.cdpn.io/39394/Degas.min.js'></script>
<script src="index.js"></script>
<div id="container">
<video autoplay="true" id="videoElement">
</video>
</div>
<script>
var video = document.querySelector("#videoElement");
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia || navigator.oGetUserMedia;
if (navigator.getUserMedia) {
navigator.getUserMedia({video: true}, handleVideo, videoError);
}
function handleVideo(stream) {
video.src = window.URL.createObjectURL(stream);
}
function videoError(e) {
// do something
}
</script>
</body>
</html>