【问题标题】:Possible to remove center middle red "youtube play" button form iframe embedded video?可以从 iframe 嵌入视频中删除中心中间红色“youtube 播放”按钮吗?
【发布时间】:2025-11-21 20:00:01
【问题描述】:

我想移除 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 中删除它:

【问题讨论】:

  • 请添加一些代码
  • 添加链接以便我们处理它。
  • 请浏览帮助中心,了解如何提出好问题以及本网站主题的问题类型。以目前的形式,这不是主题,也不是一个好问题
  • 添加了一些代码也想禁用youtube红色按钮
  • 至少没有官方的,有文档的方式,否则就是in the documentation

标签: javascript jquery html api youtube-api


【解决方案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

【讨论】: