On Beauty of the Web, there is a purple/blue swoosh at the beginning, if you are in IE9 or Chrome. How is that done? What is that? How come it only displays in IE9 and Chrome?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 4 down vote accepted

This is a video placed with html5. Look for id="streak". Here is the video if you care :)

http://az6680.vo.msecnd.net/botwcontent/assets/videos/layout/streak.mp4

Edit: The html that actually does this

<div id="streak">
        <video id="vid" src="http://az6680.vo.msecnd.net/botwcontent/assets/videos/layout/streak.mp4">
        </video>
        <canvas id="streak_canvas" width="1920" height="256"></canvas>
    </div>
link|improve this answer
1  
And it probably only works in IE9 and Chrome because those browsers support the video tag. – Amir Raminfar Oct 27 '10 at 23:22
Those are the only browsers it works in because they support the <video> tag and H.264. Firefox supports <video>, but not H.264. – Chuck Oct 27 '10 at 23:31
1  
@Amir: Firefox also supports the video tag, just not the H.264 codec which the site uses. Pre-4.0, Firefox supports only Theora, which in the end, lost the HTML5 video race. – Ashley Williams Oct 27 '10 at 23:33
@Ashley Williams - Firefox did NOT lose the HTML5 video race and it's still being run. H.264 is patent encumbered and not free in all cases, a standards no-no which will probably kill it. Ogg might have a patent issue but that's not known and is very much a contender. Possibly the final codec will be WebM. Owned by Google and released into the wild, it's supported by all browsers but IE. – Rob Dec 2 '10 at 21:20
@Rob: Theora has lost, though. It's used by one browser at the moment, which come early next year will also have WebM support. – Ashley Williams Dec 3 '10 at 0:55
show 5 more comments
feedback

home.video.streak.js is the JS that is controlling the video.

var homeVideo;
var homeVideoTimer;
var homeVideoCanvas;
var homeVideoCanvasCtx;
function beginBackgroundVideo() {
    try {
        homeVideo = document.getElementById("vid");
        homeVideoCanvas = document.getElementById('streak_canvas');
        homeVideoCanvasCtx = homeVideoCanvas.getContext('2d');
        homeVideoCanvas.style["display"] = "block";
        homeVideoTimer = setInterval(drawBackgroundVideo, 16);
    } catch (e) { //sometimes, modernizr canvas detection fails
    }
}
function drawBackgroundVideo() {
    if (!isNaN(homeVideo.duration)) {
        if (homeVideo.ended === true) {
            homeVideoCanvas.style["display"] = "none";
            clearInterval(homeVideoTimer);
            return;
        } else {
            homeVideo.play();
        }
        // Draw the video
        try {
            homeVideoCanvasCtx.drawImage(homeVideo, 0, 0, homeVideoCanvas.width, 250);
        } catch (e) {
        }
    }
} /*   paste in your code and press Beautify button   */
if ('this_is' == /an_example/) {
    do_something();
} else {
    var a = b ? (c % d) : e[f];
}

and on the page its here:

<div id="streak">
        <video id="vid" src="http://az6680.vo.msecnd.net/botwcontent/assets/videos/layout/streak.mp4">
        </video>
        <canvas id="streak_canvas" width="1920" height="256" style="display: inline; "></canvas>
</div>

looks like its doing via canvas.

link|improve this answer
feedback

It's an MP4 file http://az6680.vo.msecnd.net/botwcontent/assets/videos/layout/streak.mp4
The reason it only works in Chrome and IE9 is because it's in a <video> tag, which is only in HTML5.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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