gpt4 book ai didi

javascript - 在重定向到另一个页面之前播放视频

转载 作者:行者123 更新时间:2023-11-27 22:29:06 26 4
gpt4 key购买 nike

我想使用一个自动拉伸(stretch)到整个屏幕的视频作为背景,这样一来,如果加载了一个页面,那么就在加载内容之前,视频会播放 5 秒,然后暂停,然后播放内容如果用户点击另一个链接,则加载并重新开始播放,并且在视频结束之前不会重定向用户。

 $(function() {
var BV = new $.BigVideo();
BV.init();
BV.show('http://video-js.zencoder.com/oceans-clip.mp4');
});

我的代码工作正常,只是我不知道如何在不使用中间页面的情况下在重定向到另一个页面之前播放视频

最佳答案

<script type="text/javascript">

function vidplay() {
var video = document.getElementById("Video1");
var button = document.getElementById("play");
if (video.paused) {
video.play();
button.textContent = "||";
} else {
video.pause();
button.textContent = ">";
}
}

function restart() {
var video = document.getElementById("Video1");
video.currentTime = 0;
}

function skip(value) {
var video = document.getElementById("Video1");
video.currentTime += value;
}
</script>

</head>
<body>

<video id="Video1" >
// Replace these with your own video files.
<source src="demo.mp4" type="video/mp4" />
<source src="demo.ogv" type="video/ogg" />
HTML5 Video is required for this example.
<a href="demo.mp4">Download the video</a> file.
</video>

<div id="buttonbar">
<button id="restart" onclick="restart();">[]</button>
<button id="rew" onclick="skip(-10)">&lt;&lt;</button>
<button id="play" onclick="vidplay()">&gt;</button>
<button id="fastFwd" onclick="skip(10)">&gt;&gt;</button>
</div>

关于javascript - 在重定向到另一个页面之前播放视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19662244/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com