如何隐藏播放/暂停按钮?

时间:2016-06-23 07:15:57

标签: ios swift youtube-api

正如问题所示,我想隐藏“Youtube”播放器中的播放/暂停按钮 我在用 https://github.com/youtube/youtube-ios-player-helper

并像这样设置playerVars参数:

 let playerVars = [
        "controls" : 0,
        "playsinline" : 1,
        "autohide" : 0,
        "showinfo" : 0,
        "modestbranding" : 0
    ]

enter image description here

1 个答案:

答案 0 :(得分:1)

我发现有用的三个参数是:

showinfo=0
controls=0
autohide=1

showinfo=0确保视频不会在视频帧的顶部显示标题。

controls=0用播放按钮,音量等隐藏底栏。

autohide=1隐藏控件,直到将鼠标悬停在它们上面,这可能是最有用的。

All the official docs are here.

但您可以使用嵌入自定义CSS来隐藏或调整播放按钮的位置。

button.ytp-large-play-button.ytp-button {
    display: none;
}