window.addEventListener("load", () => { let a = document.createElement("div"); a.id = "whatsappButton", a.innerHTML = "", a.addEventListener("click", function () { window.open(a.querySelector("a").href, "_blank") }), document.body.appendChild(a) });document.addEventListener("DOMContentLoaded", function () { // تأكد إن الكود يشتغل بس في الصفحة الرئيسية if (window.location.pathname === "/" || window.location.pathname === "/index.html") { setTimeout(function () { // إنشاء الـ overlay const overlay = document.createElement("div"); overlay.style.cssText = ` position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 9999; display: flex; justify-content: center; align-items: center; `; // إنشاء البوب أب const popup = document.createElement("div"); popup.style.cssText = ` background: url('https://i.postimg.cc/qB2ZJ1s9/Screenshot-Chrome-1.png') center/cover no-repeat; width: 90%; max-width: 500px;height: 500px; padding: 30px; border-radius: 20px; color: #fff; text-align: center; font-family: Tahoma, sans-serif; box-shadow: 0 0 15px rgba(0,0,0,0.4); position: relative; `; // زر الإغلاق const closeBtn = document.createElement("span"); closeBtn.innerHTML = "✖"; closeBtn.style.cssText = ` position:absolute; top:10px; right:15px; font-size:22px; cursor:pointer; color:#fff; `; closeBtn.onclick = () => overlay.remove(); // المحتوى const title = document.createElement("h2"); title.innerHTML = "🎉 اليوم الوطني السعودي 🎉"; title.style.cssText = "font-size:26px;font-weight:bold;margin-bottom:15px;"; const text1 = document.createElement("p"); text1.innerHTML = 'خصم 25% للطلبات فوق 200 ريال عند استخدام الكود :'; text1.style.cssText = "font-size:18px;margin-bottom:10px;"; const code1 = document.createElement("p"); code1.innerText = "ART95"; code1.style.cssText = ` font-size:20px; background:#006c35; color:#fff; padding:10px; border-radius:10px; display:inline-block; `; const text2 = document.createElement("p"); text2.innerHTML = 'خصم 35% للطلبات فوق 400 ريال عند استخدام الكود :'; text2.style.cssText = "font-size:18px;margin-bottom:10px;"; const code2 = document.createElement("p"); code2.innerText = "ARTB95"; code2.style.cssText = ` font-size:20px; background:#006c35; color:#fff; padding:10px; border-radius:10px; display:inline-block; `; const text3 = document.createElement("p"); text3.innerHTML = 'توصيل مجاني فووق ال '; text3.style.cssText = "font-size:18px;margin-bottom:10px;"; const code3 = document.createElement("p"); code3.innerText = "99 ريال"; code3.style.cssText = ` font-size:20px; background:#006c35; color:#fff; padding:10px; border-radius:10px; display:inline-block; `; // ضيف العناصر popup.appendChild(closeBtn); popup.appendChild(title); popup.appendChild(text1); popup.appendChild(code1); popup.appendChild(text2); popup.appendChild(code2); popup.appendChild(text3); popup.appendChild(code3); overlay.appendChild(popup); document.body.appendChild(overlay); }, 3000); } });