要让嵌入了Vimeo视频的页面卸载视频,并在视频播放完成后重定向到另一个页面,可以通过以下步骤实现:
以下是一个示例代码,演示如何实现上述功能:
<!DOCTYPE html>
<html>
<head>
<title>Embedded Vimeo Video</title>
</head>
<body>
<div id="videoContainer">
<!-- Vimeo视频的嵌入代码 -->
<iframe src="https://player.vimeo.com/video/VIDEO_ID" width="640" height="360" frameborder="0" allowfullscreen></iframe>
</div>
<script>
// 监听Vimeo视频的播放状态
var player = new Vimeo.Player(document.querySelector('#videoContainer iframe'));
player.on('ended', function() {
// 视频播放完成后执行操作
unloadVideo();
redirectToAnotherPage();
});
function unloadVideo() {
// 卸载视频
var videoContainer = document.querySelector('#videoContainer');
videoContainer.innerHTML = '';
}
function redirectToAnotherPage() {
// 重定向到另一个页面
window.location.href = 'https://example.com/another-page';
}
</script>
</body>
</html>
请注意,上述示例代码中的"VIDEO_ID"应替换为实际的Vimeo视频ID。此外,还可以根据具体需求进行样式和功能的定制化。
关于Vimeo的更多信息和相关产品,可以参考腾讯云点播产品(https://cloud.tencent.com/product/vod)提供的视频云服务。
领取专属 10元无门槛券
手把手带您无忧上云