How to make a owl carousel with arrows instead of next previous

后端 未结 6 1443
没有蜡笔的小新
没有蜡笔的小新 2020-12-02 20:44

Yesterday I presented a website to a customer. I always use Owl carousel since it\'s responsive. The client, however, hated the previous, next words, and wanted to change th

6条回答
  •  长情又很酷
    2020-12-02 21:11

    The following code works for me on owl carousel .

    https://github.com/OwlFonk/OwlCarousel

    $(".owl-carousel").owlCarousel({
        items: 1,
        autoplay: true,
        navigation: true,
        navigationText: ["", ""]
    });
    

    For OwlCarousel2

    https://owlcarousel2.github.io/OwlCarousel2/docs/api-options.html

     $(".owl-carousel").owlCarousel({
        items: 1,
        autoplay: true,
        nav: true,
        navText: ["", ""]
    });
    

提交回复
热议问题