/* Add custom Js styles below */ const copyright = document.querySelector(".copyright-text p"); copyright.innerHTML = `
تم التصميم بواسطة | MEGA
`; (function () { const interval = setInterval(() => { const grid = document.querySelector(".s-block--banners .grid"); if (!grid) return; // إذا العنصر مش موجود، ننتظر // إذا البانر موجود بالفعل، نوقف interval if (grid.querySelector(".custom-7th-banner")) { clearInterval(interval); return; } // إنشاء عنصر الرابط الجديد const newBanner = document.createElement("a"); newBanner.className = "banner-entry square-photos custom-7th-banner"; newBanner.href = "https://alkenangallery.com/%D8%B4%D9%86%D8%B7--%D9%86%D8%B3%D8%A7%D8%A6%D9%8A/c1190175543"; newBanner.target = "_blank"; // يفتح في نافذة جديدة // إنشاء div الصورة const bgDiv = document.createElement("div"); bgDiv.className = "lazy__bg lazy bg-no-repeat entered loaded"; const imageUrl = "https://cdn.files.salla.network/homepage/1338219140/52e76059-29b2-4df3-a283-d77c94efed86.webp"; // خصائص lazy load bgDiv.setAttribute("data-bg", imageUrl); bgDiv.setAttribute("data-ll-status", "loaded"); // خصائص CSS bgDiv.style.backgroundSize = "contain"; bgDiv.style.backgroundRepeat = "no-repeat"; bgDiv.style.backgroundPosition = "center"; bgDiv.style.backgroundImage = `url("${imageUrl}")`; // إضافة div للبانر newBanner.appendChild(bgDiv); // إضافة البانر إلى الشبكة grid.appendChild(newBanner); // إيقاف الـ interval بعد الإضافة clearInterval(interval); }, 300); })();