UIWebView 的 allowedInlineMediaPlayback 属性在 iPad 上的 4.2 上不起作用
我有一个带有嵌入式 html5 视频的 UIWebView。 webview 实例将 allowedInlineMediaPlayback 设置为 NO,但此设置似乎不适用于 iPad 模拟器和设备上的 4.2 SDK - 视频仍会在初始化时内联播放,除非我启用了控件并按下了全屏按钮。
我还尝试在各种视频事件的元素上调用 video.webkitEnterFullScreen() JS 方法,但似乎只有在它专门出现在用户启动的操作(onclick、touchstart 等..)上时它才有效。
有人遇到相同的问题吗?
I have a UIWebView with emebedded html5 videos. The webview instance has allowsInlineMediaPlayback set to NO, but this setting doesn't seem to working with 4.2 SDK both on the iPad simulator and the device - videos are still play inline on initialization unless I have a controls enabled and the full screen button is pressed.
I also tried calling the video.webkitEnterFullScreen() JS method on the element on various video events but it seems like it only works if it specifically came on a user-inited action (onclick,touchstart etc..)
Anybody experiencing the same issues?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过将 mediaPlaybackRequiresUserAction 设置为 NO 然后调用 video.webkitEnterFullScreen() ?
Have you tried setting mediaPlaybackRequiresUserAction to NO then calling video.webkitEnterFullScreen() ?