This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| document.addEventListener('DOMContentLoaded', function () { | |
| const header = document.querySelector('header'); | |
| const scrollThreshold = 50; // مقدار اسکرول بر حسب پیکسل که بعد از آن کلاس اضافه شود | |
| function checkScroll() { | |
| if (window.scrollY > scrollThreshold) { | |
| header.classList.add('scrolled'); | |
| } else { | |
| header.classList.remove('scrolled'); | |
| } |