菜鸟教程小白 发表于 2022-12-13 17:01:53

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


                                            <p><p>正如问题所暗示的,我想从“Youtube”播放器中隐藏播放/暂停按钮。<br/>
我在用
<a href="https://github.com/youtube/youtube-ios-player-helper" rel="noreferrer noopener nofollow">https://github.com/youtube/youtube-ios-player-helper</a> </p>

<p>并像这样设置 playerVars 参数:</p>

<pre><code> let playerVars = [
      &#34;controls&#34; : 0,
      &#34;playsinline&#34; : 1,
      &#34;autohide&#34; : 0,
      &#34;showinfo&#34; : 0,
      &#34;modestbranding&#34; : 0
    ]
</code></pre>

<p> <a href="/image/TyfC9.png" rel="noreferrer noopener nofollow"><img src="/image/TyfC9.png" alt="enter image description here"/></a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我发现有用的三个参数是:</p>

<pre><code>showinfo=0
controls=0
autohide=1
</code></pre>

<p><code>showinfo=0</code> 确保视频不会在视频帧的顶部显示标题。 </p>

<p><code>controls=0</code> 用播放按钮、音量等隐藏底栏。</p>

<p><code>autohide=1</code> 隐藏控件,直到您将鼠标悬停在它们上方,这可能是最有用的。</p>

<p> <a href="https://developers.google.com/youtube/player_parameters" rel="noreferrer noopener nofollow">All the official docs are here.</a> </p>

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

<pre><code>button.ytp-large-play-button.ytp-button {
    display: none;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何隐藏播放/暂停按钮?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/37984683/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/37984683/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何隐藏播放/暂停按钮?