Last active
August 29, 2015 14:06
-
-
Save pommiegranit/d8d03f78356fa2e95ced to your computer and use it in GitHub Desktop.
WordPress Background Video
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
[bgvideo width="1280" height="720" | |
mp4="http://www.test.dev/wp-content/uploads/2014/09/rainier.mp4" | |
webm="http://www.test.dev/wp-content/uploads/2014/09/rainier.webm" | |
poster="http://www.test.dev/wp-content/uploads/2014/09/rainier-cover-1024x576.jpg" | |
fixed="no"] |
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
jQuery(document).ready(function() { | |
var the_height = jQuery('.bgvideo-wrapper').height(); | |
jQuery('header.entry-header').height( the_height ); | |
}); | |
jQuery(window).resize(function() { | |
var the_height = jQuery('.bgvideo-wrapper').height(); | |
jQuery('header.entry-header').height( the_height ); | |
}); |
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 width="1280" height="720" mp4="http://www.test.dev/wp-content/uploads/2014/09/rainier.mp4"][/video] | |
[video width="1280" height="720" webm="http://www.test.dev/wp-content/uploads/2014/09/rainier.webm"][/video] | |
<a href="http://www.test.dev/wp-content/uploads/2014/09/rainier-cover.jpg"><img src="http://www.test.dev/wp-content/uploads/2014/09/rainier-cover-1024x576.jpg" alt="rainier-cover" width="1024" height="576" class="alignnone size-large wp-image-1392" /></a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment