美文网首页
把优酷、土豆、腾讯视频等视频文件引入到网页后无法全屏播放的解决方

把优酷、土豆、腾讯视频等视频文件引入到网页后无法全屏播放的解决方

作者: 河外星系的外星人 | 来源:发表于2018-01-05 09:34 被阅读0次

原因是你没有加入“允许全屏播放”的代码,如下:

allowfullscreen="true"

例如下面的代码:

<iframe allowfullscreen="" frameborder="0" height="500" scrolling="no" src="https://v.qq.com/iframe/player.html?vid=h0330w5pli3&amp;tiny=0&amp;auto=0" width="850"></iframe>

这个视频是无法全屏播放的,需要在<iframe></iframe>标签的前一个标签后面加入代码:

<iframe allowfullscreen="" frameborder="0" height="500" scrolling="no" src="https://v.qq.com/iframe/player.html?vid=h0330w5pli3&amp;tiny=0&amp;auto=0" width="850" allowfullscreen="true"></iframe>

这样就可以全屏播放了。

相关文章

网友评论

      本文标题:把优酷、土豆、腾讯视频等视频文件引入到网页后无法全屏播放的解决方

      本文链接:https://www.haomeiwen.com/subject/gxsjnxtx.html