Yuika/assets/js/nav-collapse.js

50 lines
1.4 KiB
JavaScript
Raw Normal View History

2019-11-09 10:07:23 +00:00
$(document).ready(function () {
var nav = document.querySelector('.index-navbar');
2019-11-09 19:00:39 +00:00
var feed = document.querySelector('.content');
2019-11-09 10:07:23 +00:00
var lastScrollY = window.scrollY;
var lastWindowHeight = window.innerHeight;
var lastDocumentHeight = $(document).height();
var ticking = false;
function onScroll() {
lastScrollY = window.scrollY;
requestTick();
}
function onResize() {
lastWindowHeight = window.innerHeight;
lastDocumentHeight = $(document).height();
requestTick();
}
function requestTick() {
if (!ticking) {
requestAnimationFrame(update);
}
ticking = true;
}
function update() {
var trigger = feed.getBoundingClientRect().top + window.scrollY;
var progressMax = lastDocumentHeight - lastWindowHeight;
// show/hide nav
2019-11-13 11:50:52 +00:00
if (lastScrollY >= nav.getBoundingClientRect().bottom) {
2019-11-09 10:07:23 +00:00
nav.classList.add('nav-fixed');
} else {
nav.classList.remove('nav-fixed');
}
ticking = false;
}
window.addEventListener('scroll', onScroll, { passive: true });
window.addEventListener('resize', onResize, false);
update();
});