原因是你没有加入“允许全屏播放”的代码,如下:
allowfullscreen="true"
例如下面的代码:
<iframe allowfullscreen="" frameborder="0" height="500" scrolling="no" src="https://v.qq.com/iframe/player.html?vid=h0330w5pli3&tiny=0&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&tiny=0&auto=0" width="850" allowfullscreen="true"></iframe>
这样就可以全屏播放了。
网友评论