Skip to content

Instantly share code, notes, and snippets.

@BrieLewis
Last active April 4, 2017 15:44
Show Gist options
  • Save BrieLewis/23ccd0fec709520d07e894dd40c970d6 to your computer and use it in GitHub Desktop.
Save BrieLewis/23ccd0fec709520d07e894dd40c970d6 to your computer and use it in GitHub Desktop.
video display
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div class="video-container">
<iframe src="https://www.youtube.com/watch?v=qmyUAVm5ooY" width="800" height="450" frameborder="0"></iframe>
</div>
<script>
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment