OwlCarousel2项目数wordpress

时间:2018-07-25 14:50:33

标签: wordpress owl-carousel-2

它显示了所有推荐信,但我只想显示一个。

当我检查归类的课程时,发现所有潜水课程都具有class ['client']并赋予他们class ['active']

def loops = ctx.getThreadGroup().getSamplerController().getProperty('LoopController.loops')

1 个答案:

答案 0 :(得分:0)

尝试将singleItem添加到owlCarousel中,并且属性也应使用逗号而不是分号分隔。

jQuery(document).ready(function($){
    "use strict";
    $(".client").owlCarousel({
        loop: true,
        items: 1,
        nav: true,
        singleItem: true
    });
});