Files
Game-Jaming/Frontend/Javascript/ScrollController.js
T
Kraken 0318ffbd7a Edited Scrollbar (WIP)
The Scrollbar anti lag initiative
2021-04-08 15:21:49 +02:00

21 lines
629 B
JavaScript

/* When the user scrolls down, hide the navbar. When the user scrolls up, show the navbar */
$(document).ready(function() {
var instance = $('body').overlayScrollbars();
var prevScrollpos = instance.scroll().position.y;
console.log(prevScrollpos);
window.onscroll = function() {
var currentScrollPos = instance.scroll().position.y;
console.log(currentScrollPos);
if (prevScrollpos > currentScrollPos) {
$("#header").css({"top" : "0"});
} else {
$("#header").css({"top" : "-50px"});
}
prevScrollpos = currentScrollPos;
}
});