使用 html5 视频播放器播放视频后重定向页面

发布于 2024-10-20 15:44:19 字数 246 浏览 0 评论 0原文

我正在制作一个视频卷(投资组合)网站,使用 wordpress 作为后端,并使用 videojs html5 视频播放器视频在另一个帖子中。我希望视频连续播放,以便当一个视频完成时它会重定向到“下一篇文章”。

我无法查看视频播放后是否触发任何 DOM 调用。基本上我想在视频播放后立即触发重定向。

有人能指出我正确的方向吗?

谢谢!

I am making a video reel (a portfolio) website, using wordpress as my backend, and the videojs html5 video player with each video in a different post. I want the videos to play successively, so that when one video finishes it redirects to the "next post".

I'm having trouble seeing if there are any DOM calls that fire after the video plays. Basically I want to fire the redirect as soon as the video plays.

Can someone point me in the right direction?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

囍孤女 2024-10-27 15:44:19

您需要在结束时调用一个函数...或者就在那里进行重定位...

就是这样。

you need to call a function on ended... or the relocation just there...

That's it.

眸中客 2024-10-27 15:44:19

看起来有一个已结束的事件你可以连接到。

It looks like there is an ended event that you can hook up to.

夜清冷一曲。 2024-10-27 15:44:19

最终使用以下代码:

$(document).ready(function(){
    var sStr = "<?php echo get_permalink(get_adjacent_post(true,'',true)); ?>";
    $(".video-js").bind('ended', function(){
                window.location = sStr;
    });
});

Ended up using the following code:

$(document).ready(function(){
    var sStr = "<?php echo get_permalink(get_adjacent_post(true,'',true)); ?>";
    $(".video-js").bind('ended', function(){
                window.location = sStr;
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文