Skip to content

Instantly share code, notes, and snippets.

@voltrevo
Last active August 6, 2017 09:25
Show Gist options
  • Save voltrevo/5ba64547272e79f2459fcc3cdd83f54c to your computer and use it in GitHub Desktop.
Save voltrevo/5ba64547272e79f2459fcc3cdd83f54c to your computer and use it in GitHub Desktop.
'use strict';
(async () => {
const stream = await navigator.mediaDevices.getUserMedia({ video: true });
const vid = document.createElement('video');
vid.srcObject = stream;
document.body.appendChild(vid);
vid.style.position = 'absolute';
vid.style.left = '0px';
vid.style.top = '0px';
vid.style.width = '100vw';
vid.style.height = '100vh';
vid.style.objectFit = 'cover';
vid.style.transform = 'scaleX(-1)';
await vid.play();
})()
.catch(err => console.error(err))
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment