위 화면에서 웹캠 촬영을 활성화 하면 자신의 얼굴이 나올 것이다.
티스토리 html모드에서 css 태그는 자동으로 없어지는 것 같으니 div container에 인라인 스타일을 삽입하였다.
초간단 소스 (출처 : https://www.kirupa.com/html5/accessing_your_webcam_in_html5.htm)
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
|
<style>
#container {
margin: 0px auto;
width: 500px;
height: 375px;
border: 10px #333 solid;
}
#videoElement {
width: 500px;
height: 375px;
background-color: #666;
}
</style>
</head>
<body>
<div id="container">
<video autoplay="true" id="videoElement">
</video>
</div>
<script>
var video = document.querySelector("#videoElement");
if (navigator.mediaDevices.getUserMedia) {
navigator.mediaDevices.getUserMedia({ video: true })
.then(function (stream) {
video.srcObject = stream;
})
.catch(function (err0r) {
console.log("Something went wrong!");
});
}
</script>
|
cs |
'Programming > HTML, CSS, Javascript, jQuery' 카테고리의 다른 글
jquery로 버튼 동적 생성 및 연결 (0) | 2020.11.24 |
---|---|
[JQuery] ajax 사용하기 (0) | 2020.05.07 |
[Javascript] Face-detection 웹에서 해보기 (0) | 2020.05.05 |