我在使用嵌入Internet Explorer的Youtube API iframe时遇到了问题。我希望将视频嵌入showinfo = 0和controls = 2,以便在点击播放之前显示没有标题栏和控制栏的视频缩略图。之后,控件仅在鼠标悬停时显示。
这适用于所有浏览器...除了在IE中...只有当播放器是640x360或更大时,缩略图才会被上面和下面的黑条压扁。奇怪的是,如果玩家大小为350x197或560x315,则不会发生这种情况。
任何人都知道这是什么问题?
我已经准备好了一个jsfiddle来说明问题:http://jsfiddle.net/lbriquet/d8s3g/2/
以下是我正在使用的youtube iframe嵌入代码:
<iframe width="640" height="360" src="http://www.youtube.com/embed/_LmAcfO9lyg?showinfo=0&controls=2" frameborder="0" allowfullscreen></iframe>
答案 0 :(得分:0)
我终于找到了Youtube API iframe参数的组合,它可以在各种尺寸上使用它。 showinfo = 0&amp;自动隐藏= 1&#34; (删除控件= 2)
这个youtube iframe嵌入代码可以解决问题:
<iframe id="ytplayer" type="text/html" width="640" height="360" src="http://www.youtube.com/embed/_LmAcfO9lyg?fs=1&rel=0&showinfo=0&autohide=1" frameborder="0" allowfullscreen></iframe>