2013-06-02 19:12:25 -04:00
|
|
|
$(function(){
|
|
|
|
$.stellar();
|
2014-08-28 20:10:22 -04:00
|
|
|
|
|
|
|
window.onscroll = function() {
|
|
|
|
document.getElementById("scrollDown").style.opacity = Math.max(0, 200 - window.scrollY) / 200;
|
|
|
|
};
|
2014-10-06 23:30:41 -04:00
|
|
|
|
|
|
|
if (document.location.hash == "#video")
|
|
|
|
toggleMovie();
|
|
|
|
|
|
|
|
$("video")[0].addEventListener("playing", function() {
|
|
|
|
$(this).parents().find(".fallback").hide();
|
|
|
|
}, true);
|
2013-06-02 19:12:25 -04:00
|
|
|
});
|
|
|
|
|
2014-10-06 22:03:18 -04:00
|
|
|
function toggleMovie() {
|
|
|
|
if ($("header").hasClass("play")) {
|
|
|
|
$("header").removeClass("play");
|
|
|
|
$("header video")[0].pause();
|
|
|
|
} else {
|
|
|
|
$("header").addClass("play");
|
|
|
|
$("header video")[0].play();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|