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

后端 未结 6 1445
没有蜡笔的小新
没有蜡笔的小新 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:19

    If you using latest Owl Carousel 2 version. You can replace the Navigation text by fontawesome icon. Code is below.

    $('.your-class').owlCarousel({
            loop: true,
            items: 1, // Select Item Number
            autoplay:true,
            dots: false,
            nav: true,
            navText: ["",""],
    
        });
    

提交回复
热议问题