هذا الإعلان يساعدنا على الاستمرار وتقديم المزيد من المسلسلات ❤️
جاري التحميل...
تخطي الإعلان
10
10
2× ⏩
جاري التحميل...
إعادة المحاولة
إبلاغ عن مشكلة
0
الحلقات
ترجمة
صوت
شاشة
逃離未婚夫的代價
اسحب لأعلى أو لأسفل للتنقل
0:00
0:00
/* ═══ أزرار التنقل بين الحلقات للكمبيوتر/تليفزيون فقط ═══ */ (function() { // التأكد من أن الجهاز يحمل مؤشر (ماوس) وشاشة كبيرة (Desktop/TV) if (!window.matchMedia || !window.matchMedia('(min-width: 1024px) and (pointer: fine)').matches) return; const stage = document.getElementById('stage'); if (!stage) return; // إنشاء الستايل الخاص بالأزرار const style = document.createElement('style'); style.innerHTML = ` .desktop-nav-btn { position: absolute; right: 25px; z-index: 15; width: 50px; height: 50px; background: rgba(0, 0, 0, 0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; font-size: 22px; transition: background 0.2s ease, transform 0.2s ease; backdrop-filter: blur(4px); } .desktop-nav-btn:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.1); } .desktop-nav-btn.nav-up { top: 25px; } .desktop-nav-btn.nav-down { bottom: 100px; } `; document.head.appendChild(style); // إنشاء زر الحلقة التالية (سهم لأعلى) const btnUp = document.createElement('div'); btnUp.className = 'desktop-nav-btn nav-up'; btnUp.innerHTML = '
'; btnUp.title = 'الحلقة التالية'; btnUp.addEventListener('click', (e) => { e.stopPropagation(); if (typeof safeGoNext === 'function') safeGoNext(); }); // إنشاء زر الحلقة السابقة (سهم لأسفل) const btnDown = document.createElement('div'); btnDown.className = 'desktop-nav-btn nav-down'; btnDown.innerHTML = '
'; btnDown.title = 'الحلقة السابقة'; btnDown.addEventListener('click', (e) => { e.stopPropagation(); if (typeof safeGoPrev === 'function') safeGoPrev(); }); // إضافة الأزرار إلى المشغل stage.appendChild(btnUp); stage.appendChild(btnDown); })(); /* ═══ أزرار التنقل بين الحلقات للكمبيوتر/تليفزيون فقط ═══ */ (function() { // التأكد من أن الجهاز يحمل مؤشر (ماوس) وشاشة كبيرة (Desktop/TV) if (!window.matchMedia || !window.matchMedia('(min-width: 1024px) and (pointer: fine)').matches) return; const stage = document.getElementById('stage'); if (!stage) return; // إنشاء الستايل الخاص بالأزرار const style = document.createElement('style'); style.innerHTML = ` .desktop-nav-btn { position: absolute; right: 25px; z-index: 15; width: 50px; height: 50px; background: rgba(0, 0, 0, 0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; font-size: 22px; transition: background 0.2s ease, transform 0.2s ease; backdrop-filter: blur(4px); } .desktop-nav-btn:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.1); } .desktop-nav-btn.nav-up { top: 25px; } .desktop-nav-btn.nav-down { bottom: 100px; } `; document.head.appendChild(style); // إنشاء زر الحلقة التالية (سهم لأعلى) const btnUp = document.createElement('div'); btnUp.className = 'desktop-nav-btn nav-up'; btnUp.innerHTML = '
'; btnUp.title = 'الحلقة التالية'; btnUp.addEventListener('click', (e) => { e.stopPropagation(); if (typeof safeGoNext === 'function') safeGoNext(); }); // إنشاء زر الحلقة السابقة (سهم لأسفل) const btnDown = document.createElement('div'); btnDown.className = 'desktop-nav-btn nav-down'; btnDown.innerHTML = '
'; btnDown.title = 'الحلقة السابقة'; btnDown.addEventListener('click', (e) => { e.stopPropagation(); if (typeof safeGoPrev === 'function') safeGoPrev(); }); // إضافة الأزرار إلى المشغل stage.appendChild(btnUp); stage.appendChild(btnDown); })();