rDrama/files/assets/CHRISTMAS/js/mobile_navigation_bar.js
2021-12-23 19:02:32 -06:00

56 lines
No EOL
2 KiB
JavaScript

let prevScrollpos = window.pageYOffset;
document.getElementsByTagName('body')[0].onscroll = () => {
let currentScrollPos = window.pageYOffset;
// var topBar = document.getElementById("fixed-bar-mobile");
const bottomBar = document.getElementById("mobile-bottom-navigation-bar");
// var dropdown = document.getElementById("mobileSortDropdown");
// var navbar = document.getElementById("navbar");
// if (bottomBar != null) {
// if (currentScrollPos <= 60 || ((window.innerHeight + currentScrollPos) < document.body.offsetHeight)) {
// // console.log('less than 60 greater than offsetHeight');
// bottomBar.style.transform = "translateY(60px)";
// }
// else if (prevScrollpos > currentScrollPos) {
// // console.log('prev greater than current');
// bottomBar.style.transform = "translateY(0px)"
// }
// else {
// // console.log('else');
// bottomBar.style.transform = "translateY(60px)";
// }
// }
if (bottomBar != null) {
if (prevScrollpos > currentScrollPos && (window.innerHeight + currentScrollPos) < (document.body.offsetHeight - 65)) {
bottomBar.style.transform = "translateY(0px)";
}
else if (currentScrollPos <= 125 && (window.innerHeight + currentScrollPos) < (document.body.offsetHeight - 65)) {
bottomBar.style.transform = "translateY(60px)"
}
else if (prevScrollpos > currentScrollPos && (window.innerHeight + currentScrollPos) >= (document.body.offsetHeight - 65)) {
bottomBar.style.transform = "translateY(60px)";
}
else {
bottomBar.style.transform = "translateY(60px)";
}
}
// if (topBar != null && dropdown != null) {
// if (prevScrollpos > currentScrollPos) {
// topBar.style.top = "48px";
// navbar.classList.remove("shadow");
// }
// else if (currentScrollPos <= 125) {
// topBar.style.top = "48px";
// navbar.classList.remove("shadow");
// }
// else {
// topBar.style.top = "-48px";
// dropdown.classList.remove('show');
// navbar.classList.add("shadow");
// }
// }
prevScrollpos = currentScrollPos;
}