תמונות דף הבית - 2

הצטרף למועדון הלקוחות שלנו

// סקריפט משלים לאופטימיזציה של תמונות (Lazy Load) (function() { function applyLazyLoad() { const images = document.querySelectorAll('img:not([loading])'); images.forEach(img => { // מוסיף את ההוראה לדפדפן לטעון רק כשצריך img.setAttribute('loading', 'lazy'); // מוודא שהתמונה לא תגרום לקפיצות בדף (Layout Shift) if (!img.getAttribute('width')) { img.style.maxWidth = '100%'; img.style.height = 'auto'; } }); } // הפעלה applyLazyLoad(); // בדיקה חוזרת אחרי טעינת מוצרים נוספים (למשל בגלילה אינסופית) window.addEventListener('scroll', applyLazyLoad, {passive: true}); })();