document.addEventListener("DOMContentLoaded", function() { const images = document.querySelectorAll("img"); // همه تصاویر سایت const observer = new IntersectionObserver((entries, observer) => { entries.forEach(entry => { if(entry.isIntersecting){ const img = entry.target; // اگر data-src تعریف شده، آن را لود کن if(img.dataset.src){ img.src = img.dataset.src; } img.classList.add("visible"); // افکت ظاهر شدن observer.unobserve(img); // فقط یک بار } }); }, { threshold: 0.1 }); images.forEach(img => observer.observe(img)); });