بلا عنوان

طريقة تحميل وتثبيت ألعاب الكمبيوتر مجانًا بدون أخطاء

شرح كامل خطوة بخطوة + حل جميع المشاكل الشائعة

مشاهدة الفيديو

إرسال تعليق

أحدث أقدم
تابعنا
document.addEventListener("DOMContentLoaded", function () { document.querySelectorAll(".steam-gallery").forEach(function (gallery) { const items = gallery.querySelectorAll("a"); if (!items.length) return; // viewer const viewer = document.createElement("div"); viewer.className = "steam-viewer"; gallery.prepend(viewer); function showItem(el) { items.forEach(i => i.classList.remove("active")); el.classList.add("active"); const video = el.getAttribute("data-video"); const imgEl = el.querySelector("img"); viewer.innerHTML = ""; if (video) { const iframe = document.createElement("iframe"); iframe.src = video; iframe.setAttribute("allow", "autoplay; fullscreen"); iframe.setAttribute("allowfullscreen", "true"); iframe.loading = "lazy"; iframe.referrerPolicy = "no-referrer"; viewer.appendChild(iframe); } else if (imgEl) { const img = document.createElement("img"); img.src = imgEl.src; img.alt = ""; viewer.appendChild(img); } } items.forEach(function (a) { a.addEventListener("click", function (e) { e.preventDefault(); showItem(a); }); }); // أول عنصر يشتغل تلقائي showItem(items[0]); }); });