Last active
August 29, 2015 14:22
-
-
Save rickydazla/8452391fb3681b66ffc2 to your computer and use it in GitHub Desktop.
Responsive Videos
This file contains hidden or 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
$(document).ready(function(){ | |
$('iframe[src*="youtube.com/embed"]').wrap('<div class="video-wrapper"></div>'); | |
$('iframe[src*="player.vimeo"]').wrap('<div class="video-wrapper"></div>'); | |
}); |
This file contains hidden or 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
.video-wrapper { | |
position: relative; | |
overflow: hidden; | |
max-width: 100%; | |
padding-bottom: 56.25%; | |
height: 0; | |
height: auto; | |
iframe { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment