我已经看过以前的答案,关于如何重定向网站开头时自动播放的视频,以便在完成后打开新页面,但它不适合我。< / p>
我希望用户能够通过点击电影来绕过视频(如果他们愿意,文本告诉他们这样做)所以我必须在代码中包含标签。结束标记超出了所有视频标记。我已经尝试过我所见过的所有方法,但没有一种方法可以使用。你能否提供我需要做的或在这里做错的一点指导?
<div class="video-responsive">
<a href="SAV_home.html"> <!-- required for user to bypass movie -->
<script type="text/javascript">
var videoElement = document.querySelector('openingvideo');
videoElement.addEventListener('ended', function (){
window.location =
'https://www.synthsationsaudiovideo.com/SAV_home.html';
});
};
</script>
<video id="#openingvideo" autoplay> <!-- add autoplay here to play upon
startup -->
<source src="SAV_Opening_Movie.mp4" type="video/mp4">
<source src="SAV_Opening_Movie.webm" type="video/webm">
Video not supported by your browser.
</video>
</a>
<div align="center">If video doesn't play, click <a
href="https://youtu.be/o9DAX5QXMuk" target="blank">here</a> to watch the
YouTube version</div>
<!--<iframe src="https://www.youtube.com/embed/o9DAX5QXMuk" frameborder="0"
allow="autoplay; encrypted-media"></iframe> -->
</div>