在我的HTML中,我有这个:
<iframe width="420" height="315"
src="http://www.youtube.com/embed/XGSy3_Czz8k?autoplay=0&allowfullscreeen=1">
</iframe>
但是当我尝试制作全屏视频时,它说我不能这样做。 我该如何解决这个问题?
您可以查看此处的示例http://www.w3schools.com/html/tryit.asp?filename=tryhtml_youtubeiframe也不会全屏
答案 0 :(得分:0)
尝试使用Firefox时。
execute()
答案 1 :(得分:0)
尝试像这样的allowfullscreen:
<iframe width="420" height="315"
src="http://www.youtube.com/embed/XGSy3_Czz8k?autoplay=0" webkitallowfullscreen mozallowfullscreen allowfullscreen>
</iframe>
&#13;
我在上一个问题上找到了这个答案:YouTube iframe embed - full screen