Skip to content

Instantly share code, notes, and snippets.

View SEPi-os's full-sized avatar

Sepehr SEPi-os

View GitHub Profile
@SEPi-os
SEPi-os / Header_Change.js
Created April 23, 2026 14:00
کد جاوااسکریپت تغییر هدر و سربرگ وبسایت در حالت اسکرول(مدل DOM)
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');
}