“endAt”不适用于我的 YTPlayer,我不知道为什么

问题描述 投票:0回答:1

我在我的网站上使用 YouTube 视频作为背景,并使用 YTPlayer 播放它。但是,当我尝试使用“endAt”时,不会不起作用。视频将播放到最后。 startAt 按预期工作。这是代码:

<div class="thevideo">
          <div
            class="video-player"
            data-property="{videoURL:'https://www.youtube.com/watch?v=VwWY-Zh-KLM', containment:'.home-section', startAt:30, endAt:60, mute:true, autoPlay:true, loop:true, opacity:1, showControls:false, showYTLogo:false}"
          ></div>
        </div>
html video-streaming ytplayer
1个回答
0
投票

endAt 在 YTPlayer 中不起作用的问题可能与某些版本处理循环的方式有关。在某些情况下,YTPlayer 不完全支持 endAt 设置,尤其是启用循环时。

尝试此解决方案:https://stackoverflow.com/a/42281973/12421879

© www.soinside.com 2019 - 2024. All rights reserved.