window.addEventListener('DOMContentLoaded', function() { const video = document.createElement('video'); const url = 'https://shabby.jp/storage/uploads/admins/stock_movies'; const movieFile = 'GqFDzJOOvuRGp3gy0Trp5XHg8I7DjcZ1.mp4'; const thumbFile = 'GqFDzJOOvuRGp3gy0Trp5XHg8I7DjcZ1.jpg'; var root = document.body; video.poster = `${url}/thumb/${thumbFile}`; video.src = `${url}/${movieFile}`; video.setAttribute('playsinline', true); video.muted = true; video.autoplay = true; video.loop = true; video.style.position = 'fixed'; video.style.objectFit = 'cover'; video.style.width = 'auto'; video.style.height = 'auto'; video.style.minWidth = '100%'; video.style.minHeight = '100%'; video.style.right = '0'; video.style.bottom = '0'; video.style.backgroundRepeat = 'no-repeat'; video.style.backgroundSize = 'cover'; video.style.display = 'block'; video.style.margin = '0'; video.style.padding = '0'; video.style.zIndex = '-1000'; root.appendChild(video); });