var css = document.createElement("style"); css.innerHTML = "body, video {height: 100%; width: auto; margin: 0; text-align: center;}"; document.head.appendChild(css); const video = document.createElement('video'); video.src = '/content/0fbde4c394f144c44b1e59465f58766359d1b086415b2a02881cd1f1477ccc5fi0'; video.loop = true; video.muted = true; video.autoplay = true; // Ensure autoplay is set video.playsInline = true; // Important for iOS video.addEventListener('canplaythrough', function() { video.play(); }); // Use DOMContentLoaded to ensure the body is ready document.addEventListener("DOMContentLoaded", function() { setTimeout(function() { document.body.appendChild(video); }, 0); });