切换 jQuery UI 选项卡时停止播放 HTML5Media

发布于 2024-12-02 08:48:01 字数 501 浏览 1 评论 0原文

当选项卡切换或失去焦点时,是否可以停止播放 HTML5 视频?

我将 HTML5 视频jQuery UI 选项卡

我提前道歉,我似乎找不到有效的解决方案。


感谢您的帮助,但我对 javascript 的了解还处于业余水平。我尝试使用 CSS 将其从屏幕上扔掉而不是隐藏它,但这也不起作用。

WTK,谢谢,您的解决方案适用于除 IE 7/8 之外的所有浏览器。 IE 会返回一个错误(“对象不支持此属性或方法”)并且根本不会切换到视频选项卡 - 它在 IE 中已损坏。

我认为这是因为 IE < v.9 不理解 html5 视频对象并在使用 HTML5Media 的解决方案时回退到 Flowplayer…?

有什么想法吗?谢谢!

Is it possible to stop an HTML5 video from playing when the tab is switched or out of focus?

I am using HTML5 video in conjunction with jQuery UI tabs.

I apologize in advance, I can't seem to find a working solution.


Thanks for your help, but my knowledge of javascript is at amateur level. I tried using CSS to throw it off screen instead of hiding it, but that didn't work either.

WTK, Thanks, your solution worked for every browser but IE 7/8. IE kicks back an error ("Object doesn't support this property or method") and won't switch to the video tab at all – it's broken in IE.

I assume that's because IE < v.9 doesn't understand the html5 video object and falls back to Flowplayer when using HTML5Media's solution…?

Any ideas? Thanks!

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

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

发布评论

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

评论(2

幸福还没到 2024-12-09 08:48:01
$('#example').tabs({
    select: function(event, ui) {
        // if tab we're switching to isn't the one with a video player
        if (ui.tab.id != 'tab_with_player') {
            // pause your video player
            $("#your_video_tag")[0].pause();
        }
    }
})
$('#example').tabs({
    select: function(event, ui) {
        // if tab we're switching to isn't the one with a video player
        if (ui.tab.id != 'tab_with_player') {
            // pause your video player
            $("#your_video_tag")[0].pause();
        }
    }
})
遇到 2024-12-09 08:48:01

处理 select 事件 应该可以解决问题。

handling the select event should do the trick.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文