2
0
MasterPassword/Site/2013-05/js/main.js

19 lines
423 B
JavaScript
Raw Normal View History

2013-06-02 23:12:25 +00:00
$(function(){
$.stellar();
window.onscroll = function() {
document.getElementById("scrollDown").style.opacity = Math.max(0, 200 - window.scrollY) / 200;
};
2013-06-02 23:12:25 +00:00
});
function toggleMovie() {
if ($("header").hasClass("play")) {
$("header").removeClass("play");
$("header video")[0].pause();
} else {
$("header").addClass("play");
$("header video")[0].play();
}
}