How can you display HTML5 <video> as a full screen background to your website? Similar to this Flash site demo...
http://activeden.net/item/full-screen-video-background-template-v2/full_screen_preview/29617
|
How can you display HTML5 http://activeden.net/item/full-screen-video-background-template-v2/full_screen_preview/29617
| |||||||||
feedback
|
|
Use position:fixed on the video, set it to 100% width/height, and put a negative z-index on it so it appears behind everything. If you look at VideoJS, the controls are just html elements sitting on top of the video, using z-index to make sure they're above. HTML
(Add webm and ogg sources to support more browsers) CSS
It'll work in most HTML5 browsers, but probably not iPhone/iPad, where the video needs to be activated, and doesn't like elements over it. | |||
|
feedback
|
|
Take a look at my jquery VideoBG plugin: http://syddev.com/jquery.videoBG Let me know what you think :) | |||
feedback
|
|
Just a comment on this - I've used HTML5 video for a full-screen background and it works a treat - but make sure to use either Height:100% and width:auto or the other way around - to ensure you keep aspect ratio. As for Ipads -you can (apparently) do this, by having a hidden and then forcing the click event to fire, and having the function of the click event kick off the Load/Play(). P.s - this shouldn't require any plugins and can be done with minimal JS - If you're targeting any mobile device (I would assume you might be..) staying away from any such framework is the way forward. | |||
|
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.