Youtube播放器上没有全屏按钮嵌入iframe

时间:2015-05-19 12:12:18

标签: iframe youtube

我使用iframe将代码嵌入到有youtube播放器和一些html的地方,但问题是youtube播放器上没有全屏按钮。

使用iframe:http://jsfiddle.net/94150148/8rmbv7mk/

<iframe src="http://www.webvideoproduction.fr/v/vga/230415y.html" width="523" height="880" style="border-width: 0; overflow: hidden; width: 100%;"></iframe>

你有解决方案吗?

由于

1 个答案:

答案 0 :(得分:4)

您必须在youtube iframe标记中添加 allowfullscreen ,其中嵌入了youtube视频。  使用以下代码:

<iframe width="560" height="315" src="http://www.youtube.com/embed/PD8r5A4sonw" frameborder="0" allowfullscreen></iframe>

希望这有帮助。

<强>更新

嗨,试试这个更新的代码。它对我有用。

<iframe width='420' height='315' src='http://www.youtube.com/embed/PD8r5A4sonw?rel=0&amp;' allowfullscreen  ></iframe>