Created
June 25, 2021 17:27
-
-
Save eimkasp/5b6bf7b08f411689224da7483d7798c1 to your computer and use it in GitHub Desktop.
Slick Multiple Sliders Definition Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// You should include jQuery for this to work | |
$(document).ready(function () { | |
$('.first-slider').slick({ | |
slidesToShow: 3, | |
slidesToScroll: 1, | |
autoplay: true, | |
autoplaySpeed: 2000, | |
dots: true | |
}); | |
$('.second-slider').slick({ | |
slidesToShow: 1, | |
slidesToScroll: 1, | |
dots: true, | |
arrows: true | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment