/* Add background video to target sections */ const addVideoBackground = (sectionSelector, videoUrl) => { const videoSection = document.querySelector(sectionSelector); if (videoSection) { const videoBackground = document.createElement("video"); videoBackground.src = videoUrl; videoBackground.autoplay = true; videoBackground.muted = true; videoBackground.loop = true; videoBackground.style.position = "absolute"; videoBackground.style.top = "0"; videoBackground.style.left = "0"; videoBackground.style.width = "100%"; videoBackground.style.height = "100%"; videoBackground.style.objectFit = "cover"; videoBackground.style.zIndex = "-1"; videoSection.style.position = "relative"; videoSection.style.zIndex = "0"; videoSection.prepend(videoBackground); // Hide all images inside the section const images = videoSection.querySelectorAll("img"); images.forEach((img) => { img.style.display = "none"; }); } }; // Example: Add video backgrounds to different sections addVideoBackground("section:nth-child( 2 of .landing-page-first-bannar) > div", "https://github.com/wpAzzrk/hag-ahmed-bokha/raw/refs/heads/main/f5a75d4e9110f77aad403d1670044ceb12c1ba4b-ezgif.com-gif-to-mp4-converter.mp4"); // Footer Made By let esm = 'الفيصل للتسويق الالكتروني'; let link = "https://alfaisal.sa/"; document.addEventListener("DOMContentLoaded", function () { document.querySelector(".copyright-text p").innerHTML = ` تم التطوير بواسطة ${esm} `; });