mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 18:40:05 +00:00
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
/*
|
|
* Scroll up Header
|
|
* Modified from https://codepen.io/sajjad/pen/vgEZNy
|
|
*/
|
|
|
|
(function() {
|
|
// Hide header on scroll down
|
|
var didScroll,
|
|
lastScrollTop = 0,
|
|
navbarHeight = 0;
|
|
var delta = 0,
|
|
header = document.getElementsByTagName('header')[0],
|
|
headerContainer = document.querySelector('.mw-header-container');
|
|
|
|
if (headerContainer !== null) {
|
|
navbarHeight = headerContainer.offsetHeight;
|
|
}
|
|
|
|
window.addEventListener('scroll', function() {
|
|
didScroll = true;
|
|
});
|
|
|
|
function hasScrolled() {
|
|
var st = window.scrollY; // Make scroll more than delta
|
|
|
|
if (Math.abs(lastScrollTop - st) <= delta) {
|
|
return;
|
|
}
|
|
|
|
if (st > lastScrollTop && st > navbarHeight) {
|
|
// If scrolled down and past the navbar, add class .nav-up.
|
|
// Scroll Down
|
|
header.classList.remove('nav-down');
|
|
header.classList.add('nav-up');
|
|
} else {
|
|
// Scroll Up
|
|
var body = document.body,
|
|
html = document.documentElement,
|
|
documentHeight = Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight);
|
|
|
|
if (st + window.innerHeight < documentHeight) {
|
|
header.classList.remove('nav-up');
|
|
header.classList.add('nav-down');
|
|
}
|
|
}
|
|
|
|
lastScrollTop = st;
|
|
}
|
|
|
|
setInterval(function() {
|
|
if (didScroll) {
|
|
hasScrolled();
|
|
didScroll = false;
|
|
}
|
|
}, 250);
|
|
})(); |