Last active
November 8, 2017 05:13
-
-
Save voltrevo/5168d60a4936e1a4db46cca949d69390 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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