Skip to content

Instantly share code, notes, and snippets.

@voltrevo
Last active November 8, 2017 05:13
Show Gist options
  • Save voltrevo/5168d60a4936e1a4db46cca949d69390 to your computer and use it in GitHub Desktop.
Save voltrevo/5168d60a4936e1a4db46cca949d69390 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: black;
color: white;
width: 100vw;
height: 100vh;
overflow: hidden;
margin: 0;
}
video {
width: 100%;
height: 100%;
object-fit: contain;
}
</style>
<script>
const src = unescape(location.search.slice(1));
window.addEventListener('load', () => {
document.querySelector('video').src = src;
});
</script>
</head>
<body>
<video controls>Loading...</video>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment