document.addEventListener("DOMContentLoaded", () => { const videoURL = "https://f.top4top.io/m_34323flvl1.mp4"; const video = document.createElement("video"); video.src = videoURL; video.controls = true; video.autoplay = true; video.muted = true; video.playsInline = true; video.width = 1100; video.style.display = "block"; video.style.margin = "20px auto"; video.style.maxWidth = "100%"; const header = document.querySelector("body.index header"); if (header) { header.insertAdjacentElement("afterend", video); } else { console.warn("❌ لم يتم العثور على عنصر
في الصفحة."); } }); // رابط الفيديو /* const videoURL = "https://f.top4top.io/m_34323flvl1.mp4"; // إنشاء عنصر الفيديو const video = document.createElement("video"); video.src = videoURL; video.controls = true; video.autoplay = true; video.muted = true; // ضروري لتشغيل الفيديو تلقائيًا بدون تدخل المستخدم video.playsInline = true; // لدعم الموبايل video.width = 1100; video.style.display = "block"; video.style.margin = "20px auto"; // العثور على أول
بعد
const header = document.querySelector("body.index header"); if (header) { const firstSection = header.nextElementSibling?.tagName === "SECTION" ? header.nextElementSibling : document.querySelector("body.index header + section"); if (firstSection) { firstSection.insertAdjacentElement("afterend", video); } else { console.warn("لم يتم العثور على أول عنصر
بعد
."); } } else { console.warn("لم يتم العثور على عنصر
في الصفحة."); } */ /********************/ /***************************/ document.addEventListener("DOMContentLoaded", function () { let t = document.querySelector("footer.store-footer .text-gray-400"); if (t) { t.innerHTML = "صنع بحب بواسطة "; t.style.color = "#fff"; let e = document.createElement("a"); e.href = "https://tjartii.com"; e.textContent = "تجارتي"; e.style.color = "blue"; e.setAttribute("target", "_blank"); t.appendChild(e); } }); document.addEventListener("DOMContentLoaded", function () { // شرط: يشتغل بس لو انت في الصفحة الرئيسية if (window.location.pathname === "/" || window.location.pathname === "/index.html") { const popup = document.createElement("div"); popup.id = "custom-popup"; popup.innerHTML = ` `; document.body.appendChild(popup); // إظهار البوب أب بعد نص ثانية setTimeout(() => { popup.classList.add("show"); }, 500); // زر الإغلاق document.getElementById("close-popup").addEventListener("click", function () { popup.classList.remove("show"); }); } });