如何使用 owl 旋转木马与 RTL 方向同步

how to use owl carousel sync with RTL direction

我想使用 owl 旋转木马与 RTL 方向同步但不工作

我写了以下样式来修复这个问题错误我的同步 owl 轮播不工作:

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

现在怎么办?

试试 rtl: true

$('.owl-carousel').owlCarousel({
    rtl:true,
    loop:true,
    margin:10,
    nav:true,
    responsive:{
        0:{
        items:1
    },
    600:{
        items:3
    },
    1000:{
        items:5
    }
}
})