// إنشاء زر واتساب const whatsappButton = document.createElement('a'); whatsappButton.className = 'whatsapp-button'; whatsappButton.href = '#'; // الرابط مؤقت whatsappButton.id = 'whatsapp-button'; // إضافة أيقونة واتساب كصورة const whatsappIcon = document.createElement('img'); whatsappIcon.src = 'https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg'; // شعار واتساب whatsappIcon.alt = 'WhatsApp'; whatsappIcon.className = 'whatsapp-icon'; // إضافة الأيقونة إلى الزر whatsappButton.appendChild(whatsappIcon); // إضافة الزر إلى الصفحة document.body.appendChild(whatsappButton); // إنشاء نافذة تحتوي على خيارات (تواصل عبر واتساب، و الاتصال المباشر) const optionsDiv = document.createElement('div'); optionsDiv.className = 'whatsapp-options'; // زر إرسال رسالة عبر واتساب const whatsappLinkButton = document.createElement('button'); whatsappLinkButton.textContent = 'تواصل عبر واتساب'; whatsappLinkButton.onclick = function() { window.open('https://wa.me/966506425499?text=مرحبًا بك في ستار الألماس! شكرًا لتواصلك معنا لطلب أفضل أنواع السجاد، الموكيت، الفينيل، والعشب الصناعي. كيف يمكننا مساعدتك اليوم؟ نحن هنا لخدمتك والإجابة على جميع استفساراتك بأسرع وقت.', '_blank'); // استبدل بـ رقمك الفعلي }; optionsDiv.appendChild(whatsappLinkButton); // زر الاتصال المباشر const callButton = document.createElement('button'); callButton.textContent = 'اتصل الآن'; callButton.onclick = function() { window.location.href = 'tel:+966506425499'; // استبدل بـ رقمك الفعلي }; optionsDiv.appendChild(callButton); // إضافة نافذة الخيارات إلى الصفحة document.body.appendChild(optionsDiv); // إخفاء نافذة الخيارات عند بداية التحميل optionsDiv.style.display = 'none'; // إظهار نافذة الخيارات عند الضغط على زر واتساب whatsappButton.onclick = function(event) { event.preventDefault(); // منع الانتقال إلى الرابط optionsDiv.style.display = optionsDiv.style.display === 'none' ? 'block' : 'none'; };