Owl Carousel VIDEO Autoplay不起作用

时间:2014-02-17 20:17:35

标签: jquery video carousel frontend owl-carousel

我使用OWL Carousel并且我想要自动播放视频(幻灯片的背景视频),但显然猫头鹰旋转木马会停止播放视频。

这是我的jsfiddle:

http://jsfiddle.net/EGrGN/35/

    <video width="320" height="240" autobuffer controls autoplay>

1 个答案:

答案 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();
    }
 });