我使用OWL Carousel并且我想要自动播放视频(幻灯片的背景视频),但显然猫头鹰旋转木马会停止播放视频。
这是我的jsfiddle:
<video width="320" height="240" autobuffer controls autoplay>
答案 0 :(得分:4)
你可以在回调后调用jQuery函数play()
:
owl.owlCarousel({
navigation: true, // Show next and prev buttons
slideSpeed: 300,
paginationSpeed: 400,
singleItem: true,
afterAction: function(current) {
current.find('video').get(0).play();
}
});