document.addEventListener("DOMContentLoaded", function() { // إنشاء عنصر الإشعار var toast = document.createElement("div"); toast.id = "customToast"; toast.textContent = "🎁 تسوّق الآن واستمتع بعروض مذهلة!"; document.body.appendChild(toast); // إظهار الإشعار بعد 3 ثوانٍ setTimeout(function() { toast.classList.add("show"); }, 3000); // إخفاؤه بعد 1 ثوانٍ setTimeout(function() { toast.classList.remove("show"); }, 6000); }); window.addEventListener("load", function() { var phone = "966508764636"; var message = "مرحبًا! أود الاستفسار عن خدمات برمجة وتطوير Eagle Vision."; var waLink = "https://wa.me/" + phone + "?text=" + encodeURIComponent(message); // إنشاء الشريط السفلي var footerBar = document.createElement("div"); footerBar.id = "evFooterBar"; footerBar.innerHTML = ` برمجة وتطوير Eagle Vision `; document.body.appendChild(footerBar); });