Skip to content
Nunawading
Type
Commercial Renovation
document.addEventListener("DOMContentLoaded", function() {
const header = document.querySelector(".my-header");
// مطمئن شو که اول صفحه مخفیه
header.classList.remove("active");
window.addEventListener("scroll", function() {
if (window.scrollY > 10) {
header.classList.add("active"); // اسکرول شد → ظاهر بشه
} else {
header.classList.remove("active"); // برگشت بالا → مخفی بشه
}
});
});