Skip to content

Instantly share code, notes, and snippets.

@xavortm
Created September 8, 2014 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xavortm/c10765a77737e79f478f to your computer and use it in GitHub Desktop.
Save xavortm/c10765a77737e79f478f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Not teh urn... :(</title>
<style>
* html, html, body { height:100%; overflow:hidden; margin:0; padding:0; background-color:black; }
#videoWrapper {
width: 100%;
height: 100%;
position: relative;
}
#videoWrapper video {
top:0; left:0;
width: 100%;
height:100%;
position: absolute;
}
</style>
<!--[if lt IE 9]><script src="html5shiv.js"></script><![endif]-->
<script src="ga.js"></script>
<script>ga('/not');</script>
</head>
<body>
<div id="videoWrapper">
<video poster="media/Sunshine_Leakity.jpg" id="no" autoplay loop controls>
<source src="media/Sunshine_Leakity.webm" type='video/webm'>
<source src="media/Sunshine_Leakity.mp4" type='video/mp4'>
</video>
</div>
<script>
document.getElementById("no").removeAttribute('controls');
</script>
</body>
<!-- Shoutouts to video creator: http://youtube.com/user/PeppyCracker -->
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment