有用链接>>
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>
解
最佳答案
编辑
似乎问题出在 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