Hi just fond a cool page and would love to know how they did it.

http://www.six60.co.nz/

If anyone knows or could give me a starting point to work it out that would be awesome.

Thanks for your time.

link|improve this question

dude,it's a band and an awesome website. It's not a political site.Why horrible? They're using the ScrollTo plugin and the only thing that could distract is the video and it's there for the first two links. Also, the fonts are big enough so It compensates. – Sebastien Paquet Nov 25 '11 at 1:51
feedback

2 Answers

up vote 6 down vote accepted

Looking at the source, it seems they used the new HTML5 <video> tag:

<video id="hv" loop="loop" preload="auto">
    <source src="/resources/video/six60-home.mp4" type='video/mp4' />
    <source src="/resources/video/six60-home.webm" type='video/webm' />
</video>

It also uses Flash is certain conditions are met.

The video frame has a JavaScript hook which automatically resizes the video to the width size:

function resizeContainers() {
    $(".resize-container").css("min-height", currentWindowSize.height + "px");
    $(".resize-container-to-window").css("height", currentWindowSize.height + "px");
}

It's positioned at the back due to its CSS properties:

#home-video 
{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    margin: 0;
    z-index: 1;
}
link|improve this answer
yeah i see that but how do you set it to the background? – 1ftw1 Nov 25 '11 at 1:33
4  
@1ftw1: The same way you put any element in the background. – Matti Virkkunen Nov 25 '11 at 1:35
feedback

Your Answer

 
or
required, but never shown

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