0

我想使用 owl carousel sync 与 RTL 方向但不工作

我写了以下样式来解决这个问题错误我的同步猫头鹰轮播不工作:

.owl-carousel .owl-item{
   float: right !important;
}

现在做什么?

4

1 回答 1

0

试试 rtl: true

$('.owl-carousel').owlCarousel({
    rtl:true,
    loop:true,
    margin:10,
    nav:true,
    responsive:{
        0:{
        items:1
    },
    600:{
        items:3
    },
    1000:{
        items:5
    }
}
})
于 2016-10-16T09:17:24.090 回答