• 我在下面提供了有用的链接代码!我认为代码是正确的!
  • 如果我们单击视频播放器底部悬停处的播放控件,
  • 播放器将正常工作(下图)!
  • 请帮助我弄清为什么自动播放不起作用?
  • 我的代码出错了?




  • 有用链接>>

    https://github.com/pupunzi/jquery.mb.YTPlayer

    http://pupunzi.open-lab.com/mb-jquery-components/jquery-mb-YTPlayer/

    http://pupunzi.com/#mb.components/mb.YTPlayer/YTPlayer.html

    这是代码>>
    <a class="player" id="player" data-property="{
                   videoURL: 'https://www.youtube.com/watch?v=j9fgbuH0_RI&feature=youtu.be',
                   containment:'#videobg',
                   autoPlay: true,
                   optimizeDisplay: true,
                   showControls: true,
                   startAt: 0,
                   opacity: 1,
                   ratio: '4/3',
                   addRaster: false }"></a>
    
                <div id="videobg" class="section-divider white-text videobg" data-scroll-index="4">
                    <div class="pattern-overlay"></div>
                    <div class="triangle-right"></div>
    
                    <div class="container extra-padding">
                        <div class="col-md-5 extra-padding">
                            <h1>INNOVATING THROUGH TRAVEL</h1>
                            <p>Travel is more than the seeing of sights; it is a change that goes on, deep and permanent, in the ideas of living.</p>
                        </div>
                    </div>
                </div>
    


  • 使用ytplayer的Java脚本的最新版本。
  • 最佳答案

    编辑

    似乎问题出在 jquery.mb.YTPlayer 仓库中。
    如果我们看问题https://github.com/pupunzi/jquery.mb.YTPlayer/issues/49

    确保您拥有最新版本的仓库。

    从存储库中读取文档后,尝试将autoPlay: true,替换为autoplay: true,
    最终代码:

    <a class="player" id="player" data-property="{
       videoURL: 'https://www.youtube.com/watch?v=j9fgbuH0_RI&feature=youtu.be',
       containment:'#videobg',
       autoplay: true,
       optimizeDisplay: true,
       showControls: true,
       startAt: 0,
       opacity: 1,
       ratio: '4/3',
       addRaster: false }"></a>
    
    <div id="videobg" class="section-divider white-text videobg" data-scroll-index="4">
        <div class="pattern-overlay"></div>
        <div class="triangle-right"></div>
    
        <div class="container extra-padding">
            <div class="col-md-5 extra-padding">
                <h1>INNOVATING THROUGH TRAVEL</h1>
                <p>Travel is more than the seeing of sights; it is a change that goes on, deep and permanent, in the ideas of living.</p>
            </div>
        </div>
    </div>
    

    Doc:https://github.com/pupunzi/jquery.mb.YTPlayer/wiki

    08-15 15:53