Files
web/public/js/nav.js
T

13 lines
403 B
JavaScript

function applyHeaderShadow() {
const header = document.querySelector(".web-header-emit-shadow-when-top");
if (!header) return;
window.addEventListener("scroll", () => {
if (window.scrollY > 0) {
header.classList.add("shadow-active");
} else {
header.classList.remove("shadow-active");
}
});
}
document.addEventListener("DOMContentLoaded", applyHeaderShadow);