このウェブサイトはご利用の端末での閲覧に対応していません。
This website does not support your device.
havin' a coffee break

このページはHTMLタグ辞書のサンプルページです。
iframe”要素の使い方について解説するためのサンプルページです。

このサンプルで表示される画面は、他の端末で表示されることはありません。

<video id="sample-showcamera"></video>
<script>
if (navigator.getUserMedia) {
navigator.getUserMedia(
{
audio: true ,
video: {
width: 300,
height: 200
}
} ,
function(stream) {
var video = document.getElementById( "sample-showcamera" ) ;
video.src = window.URL.createObjectURL(stream);
video.onloadedmetadata = function(e) {
video.play();
} ;
} ,
function(err) {
alert("Error: " + err.name);
}
);
} else {
alert("getUserMedia() is not supported");
}
</script>
(C) 2015 havin' a coffee break