Greasy Fork is available in English.
navigation bar behavior based on scroll bar
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/491240/1352510/scroll2078.js
document.addEventListener('DOMContentLoaded', function () {
const header = document.querySelector('.header');
header.style.top = '-18px'; // Initial position of the header
function handleScroll() {
let scrollTop = window.pageYOffset || document.documentElement.scrollTop;
if (scrollTop <= 18) {
header.style.top = `${-18 + scrollTop}px`;
} else {
header.style.top = '0px';
}
}
window.addEventListener('scroll', handleScroll);
});