我目前创建的这个网站只有200x200视频播放器的空间,所以我需要减少视频控制面板上的混乱程度"。
这就是玩家现在的样子,我需要删除|<
&amp; >|
个按钮
谢谢!
段:
<iframe id="ytplayer" type="text/html" width="200" height="200" src="https://www.youtube.com/embed/?listType=playlist&list={PLAYLISTIDHERE}" >
答案 0 :(得分:1)
不可能。但是,您可以删除播放器栏上的youtube徽标以获得一些空间。 将参数modestbranding = 1添加到您的请求中
答案 1 :(得分:1)
这可能取决于您的代码,但您可以尝试“controls = 0”,如: http://www.youtube.com/embed/ $ VIDEOID?对照= 0 在哪里用有效的视频ID替换$ VIDEOID。
请注意,这也会在播放过程中移除滑块以在视频中前进和后退。 要在最后删除相关视频,播放后,添加参数“rel = 0”,如下所示: http://www.youtube.com/embed/ $ VIDEOID对照= 0&安培;相对= 0
查看可用参数列表: https://developers.google.com/youtube/player_parameters
尝试:
<iframe id="ytplayer" type="text/html" width="200" height="200" src="https://www.youtube.com/embed/?controls=0&listType=playlist&list={PLAYLISTIDHERE}" />
看起来播放列表选择确实显示在左上角但是不再使用controls = 0。
选项可能是使用autohide = 1。我还按建议添加了modestbranding = 1。
<iframe id="ytplayer" width="200" height="200" src="https://www.youtube.com/embed/?modestbranding=1&autohide=1&listType=playlist&list={PLAYLISTIDHERE}" />