HTML5 中的移动视频 - 关闭视频播放器或完成后重定向

发布于 2024-11-04 18:46:30 字数 570 浏览 1 评论 0原文

我几乎已经完成了一个利用 jquery 移动框架的移动网站,但在我提供的视频方面遇到了一些问题。 iPhone 和 Android 都在各自设备的本机播放器中打开视频。视频结束后,屏幕变黑。但是,我希望播放器关闭,然后使他们选择视频的浏览器页面再次可见。有没有办法在视频播放完毕后动态关闭播放器?我看过这篇帖子以及这篇帖子但似乎没有一个清晰的 回答。我的测试站点是此处

关闭 iPhone/Android 视频播放器或重定向回页面是否更容易?或者这确实是相同的动作,只是表述不同?

I have nearly completed a mobile Web site which leverages the jquery mobile framework but have run into a few problems regarding the videos I am serving. Both iPhone and Android open a video in their respective device’s native player. Once the video ends the screen goes black. I would like, however, the player to close and then make the browser page they selected the video from visible again. Is there a way to simply close the player dynamically once the video has completed? I have looked at this post as well as this post but there does not seem to be a clear answer. My test site is here.

Is it easier to close the iPhone/Android video player or do a redirect back to page? Or is this really the same action but simply stated differently?

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

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

发布评论

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

评论(1

短暂陪伴 2024-11-11 18:46:30

使用 Android 时,视频会自动关闭,无需任何额外代码。

我在iOS上使用了以下代码来关闭视频播放器(使用jquery绑定事件):


    if(isiPhone){
        $('#video_element').bind('ended', function(){
            document.getElementById('video_element').webkitExitFullScreen();
        });
    }

详细信息请查看以下网址:
http://developer.apple.com/library/safari/#documentation/AudioVideo/Reference/HTMLVideoElementClassReference/HTMLVideoElement/HTMLVideoElement.html#//apple_ref/doc/uid/TP40009356

when using Android, the video closed automatically for me without any extra code.

I used the following code for iOS to close the video player (using jquery to bind event):


    if(isiPhone){
        $('#video_element').bind('ended', function(){
            document.getElementById('video_element').webkitExitFullScreen();
        });
    }

Check out the following url for details:
http://developer.apple.com/library/safari/#documentation/AudioVideo/Reference/HTMLVideoElementClassReference/HTMLVideoElement/HTMLVideoElement.html#//apple_ref/doc/uid/TP40009356

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