1

我使用 OWL Carousel,我想自动播放视频(幻灯片的背景视频),但显然 owl carousel 停止了视频。

这是我的jsfiddle:

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

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

1 回答 1

4

可以play()在回调 afterAction 中调用 jQuery 函数:

 owl.owlCarousel({
    navigation: true, // Show next and prev buttons
    slideSpeed: 300,
    paginationSpeed: 400,
    singleItem: true,
    afterAction: function(current) {
        current.find('video').get(0).play();
    }
 });
于 2014-03-26T11:32:24.820 回答