我正在尝试在我的网页中插入视频而不显示任何播放器控件。
有没有办法做到这一点?
只需删除视频控件属性即可。
PS好吧,我希望它能像你想要的那样工作:
<iframe id="ytdiv" src="http://www.youtube.com/embed/wZGenX_Vwk0?rel=0&autoplay=1&showinfo=0&controls=0&HD=1" frameborder="0" width="650" height="350"></iframe>
<div id="backgrounddiv" style="background-color:transparent;">
</div>
<style>
#backgrounddiv{width:650px;
height:350px;position:relative;}
#ytdiv{
position:absolute;z-index:-1;
}
</style>