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

link|improve this question

50% accept rate
stackoverflow.com/questions/1055214/… You can check in there – saturngod Oct 10 '10 at 10:15
I saw that post already, that seems to be more concerned with playing video outside the browser window at full screen, I'm looking for re-sizeable in-browser video. I thought there might be more out there on this although this link looks a bit more promising – Yammi Oct 10 '10 at 10:26
html5-fullscreen-video.com – Yammi Oct 10 '10 at 10:26
I'm not posting this as an answer, because I've only got empirical evidence, but testing in Chrome and Firefox (Ubuntu 10.04) suggests that this isn't possible. I am, however, fascinated to be proven wrong. +1 and starred, just in case. – David Thomas Oct 10 '10 at 10:28
feedback

3 Answers

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

<video id="video_background" src="video.mp4" autoplay>

(Add webm and ogg sources to support more browsers)

CSS

#video_background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1000;
}

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.

link|improve this answer
feedback

Take a look at my jquery VideoBG plugin:

http://syddev.com/jquery.videoBG

Let me know what you think :)

link|improve this answer
Very, very cool! What is the license? I encourage you to keep improving it (although it already has many useful options). – Flow May 10 at 10:03
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.

link|improve this answer
See sklinar.co.uk/toe in Chrome for a working example. – Stuart.Sklinar Mar 29 at 14:43
feedback

protected by Community Mar 22 at 21:31

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.