A
A
Alexey2016-09-11 18:47:12
Slider
Alexey, 2016-09-11 18:47:12

How to make two different sliders with different navigation arrows using the slick plugin?

I made one slider and set up navigation arrows (arrows) on it, and now on the next slider, below, you need to set up navigation arrows differently (in other places)

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Shinso, 2016-09-11
@Shinso

Copied from one of my training projects, I hope it works

$('.rotator-table').slick({
        slidesToShow: 3,
        slidesToScroll: 3,
        autoplay: false,
        autoplaySpeed: 2000,
        arrows: false,
    });

    $('.rotator-left').click(function(){
        $('.rotator-table').slick('slickPrev');
    })

    $('.rotator-right').click(function(){
        $('.rotator-table').slick('slickNext');
    })

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question