2
0
2014-08-28 20:10:53 -04:00

9 lines
182 B
JavaScript
Executable File

$(function(){
$.stellar();
window.onscroll = function() {
document.getElementById("scrollDown").style.opacity = Math.max(0, 200 - window.scrollY) / 200;
};
});