jwplayer html5视频全屏无法嵌入iframe

0 embed iframe fullscreen html5-video

我将从我的服务器为用户托管视频.用户可以嵌入视频......目前我正在编写php脚本.但我有嵌入代码的问题.问题是,无法在html5上全屏...播放器支持html5和flash播放器.如果播放器是闪存用户可以从嵌入代码全屏.但是在html5播放器上无法全屏显示.Youtube的嵌入代码可以全屏显示,但YouTube也使用html5.这是我使用的代码:

<iframe width="530" height="270" src="http://videohost.tk/embed/0f2c67c9b" frameborder="0"></iframe>
Run Code Online (Sandbox Code Playgroud)

如果您直接输入链接,则可以全屏显示.但是对于iframe,你不能......我该如何修复它?

小智 6

我认为你的iframe元素需要包含allowfullscreen属性.

以下是以全屏属性为例的更新代码:

<iframe width="530" height="270" src="http://videohost.tk/embed/0f2c67c9b" frameborder="0" allowfullscreen></iframe>
Run Code Online (Sandbox Code Playgroud)