Files
site-plata-upravleniya-rf/backup/public copy/js/scroll.js
2024-05-23 22:04:56 +03:00

11 lines
242 B
JavaScript

function onScroll() {
const header = document.getElementById("header")
if (window.scrollY > 0) {
header.classList.add("scrolled")
} else {
header.classList.remove("scrolled")
}
}
document.addEventListener("scroll", onScroll)