/* ============================================================== محول الصور - يحول الـ divs الكسولة إلى وسوم img حقيقية يعمل على جميع sections في الصفحة ============================================================== */ document.addEventListener('DOMContentLoaded', () => { const sections = document.querySelectorAll('section.s-block.s-block--banners.container'); sections.forEach(section => { const bannerDivs = section.querySelectorAll('.lazy__bg'); bannerDivs.forEach(div => { const imageUrl = div.getAttribute('data-bg'); if (!imageUrl) return; const parent = div.parentNode; parent.style.display = 'block'; const img = document.createElement('img'); img.src = imageUrl; img.alt = ''; img.className = 'w-full h-full object-contain'; img.loading = 'lazy'; img.style.width = '100%'; img.style.height = '100%'; img.style.display = 'block'; div.parentNode.replaceChild(img, div); }); }); }); /* ============================================================== نهاية كود محول الصور ============================================================== */ /* Add custom Js code below */ (function() { var nav = document.querySelector('body.index #mainnav'); if (!nav) return; var banner = document.createElement('div'); banner.id = 'hero-banner-wrapper'; banner.style.cssText = [ 'width: 100%', 'max-width: 100vw', 'overflow: hidden', 'line-height: 0', 'display: block', 'margin: 0', 'padding: 0' ].join(';'); var img = document.createElement('img'); img.src ='https://i.ibb.co/BHYYB0vz/mindspark.png'; img.alt = 'Hero Banner'; img.style.cssText = [ 'width: 100%', 'height: auto', 'display: block', 'max-width: 100%', 'object-fit: cover' ].join(';'); banner.appendChild(img); nav.insertAdjacentElement('afterend', banner); })(); /* Add custom Js code below */ const CONFIG = { targetSelector: 'section.s-block.s-block--fixed-banner.wide-placeholder', buttonLink: 'https://mindsparks.net/digital-courses/c858389096', imageUrl: 'https://images.unsplash.com/photo-1620712943543-bcc4688e7485?w=641&h=470&fit=crop', videoUrl: 'https://mindsparks.net/digital-courses/c858389096', }; const sectionHTML = `

دورات رقمية

دورات رقمية في مجالات متعددة،
بأسلوب مبسط يربط بين الفكرة والتطبيق

من مهارات عملية... إلى معارف تواكب تغيّر السوق

تصفح الدورات
دورات رقمية
`; (function injectSection() { const existing = document.getElementById('digital-courses-section'); if (existing) existing.remove(); const selectors = CONFIG.targetSelector.split(',').map(s => s.trim()); let target = null; let usedSelector = ''; for (const sel of selectors) { const el = document.querySelector(sel); if (el) { target = el; usedSelector = sel; break; } } if (!target) { return; } target.insertAdjacentHTML('beforebegin', sectionHTML); })();