在 Mobile Safari 上退出全屏后停止视频

发布于 2024-10-20 12:18:22 字数 150 浏览 3 评论 0原文

嘿伙计们, 我在网页上有一个缩略图,单击该缩略图时,会使用 webkitEnterFullscreen() 方法全屏播放视频。

但我需要在用户触摸“完成”按钮并离开全屏模式后停止播放视频。

用户退出全屏后是否会触发一个事件?

谢谢, 德鲁

Hey Guys,
I've got a thumbnail on a webpage that when clicked, plays a video in fullscreen using the webkitEnterFullscreen() method.

But I need the video to stop playing once the users touches the "Done" button and leaves fullscreen mode.

Is there an event that fires once the the user has exited fullscreen?

Thanks,
Drew

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

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

发布评论

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

评论(1

我喜欢麦丽素 2024-10-27 12:18:22

我收到了一位苹果开发人员发来的电子邮件,他为我回答了这个问题。

这两个事件是 webkitbeginfullscreen 和 webkitendfullscreen。这段示例代码对于查看事件触发的顺序非常有用(每当事件发出时,它都会向页面记录一条消息),并且包括以下两个事件:

http://developer.apple.com/library/safari/#samplecode/HTML5VideoEventFlow/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40010085-Intro-DontLinkElementID_2

I had an email from an Apple developer which answered this question for me.

The two events are webkitbeginfullscreen and webkitendfullscreen. This piece of sample code is really useful for seeing the order that events fire (it logs a message to the page whenever an event is emitted), and includes these two events:

http://developer.apple.com/library/safari/#samplecode/HTML5VideoEventFlow/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40010085-Intro-DontLinkElementID_2

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