Skip to content

Instantly share code, notes, and snippets.

@eimkasp
Created June 25, 2021 17:27
Show Gist options
  • Save eimkasp/5b6bf7b08f411689224da7483d7798c1 to your computer and use it in GitHub Desktop.
Save eimkasp/5b6bf7b08f411689224da7483d7798c1 to your computer and use it in GitHub Desktop.
Slick Multiple Sliders Definition Example
// 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