可以删除中间中间红色“youtube播放”按钮,从iframe嵌入视频?

时间:2016-12-14 12:39:45

标签: javascript jquery html5 api youtube-api

我想删除youtube播放器和中间的youtube红色播放按钮。

我想通过自定义按钮控制播放暂停。

<iframe width="560" height="315" src="https://www.youtube.com/embed/xyz?enablejsapi=1&html5=1&rel=0&modestbranding=1&autohide=1&showinfo=0&controls=0" frameborder="0" allowfullscreen></iframe>

修改

已经使用了上述参数,但这并没有隐藏中心播放按钮。是否可以更改该按钮?

需要从iframe中删除它:

1 个答案:

答案 0 :(得分:1)

请找到以下有用的参数。

showinfo=0,video will not  display the title on video frame. 
controls=0,hides the bottom bar
autohide=1,hides the controls

请使用以下链接了解更多详情

https://developers.google.com/youtube/player_parameters

相关问题