$(function(){ var target = document.getElementById("video"); var video = document.createElement("video"); video.src = "https://www.kichimu.com/raku/files/images/home/mv.mp4"; video.muted = true; video.autoplay = true; video.setAttribute('playsinline', ''); var st = document.getElementById("st_main"); st.style.display = "none"; var btn = document.getElementById("video-btn"); var btn_status = 0; btn.style.display = "none"; video.addEventListener("ended", function() { video.load(); video.style.display = "none"; video.autoplay = false; st.style.display = "block"; btn.style.display = "block"; }); target.appendChild(video); btn.addEventListener('click', function () { video.style.display = "block"; st.style.display = "none"; btn.style.display = "none"; video.play(); video.currentTime = 0 ; btn_status = 1; }); });