Skip to content

Instantly share code, notes, and snippets.

@im-sad
Created December 15, 2016 18:15
Show Gist options
  • Save im-sad/aba39230a2992147151a06a915fc0800 to your computer and use it in GitHub Desktop.
Save im-sad/aba39230a2992147151a06a915fc0800 to your computer and use it in GitHub Desktop.
Custom Dots for slick.js
/**
* Slick
*/
;(function($) {
$('.slick').slick({
infinite: false,
dots: true,
customPaging: function(slider, i) {
// this example would render "tabs" with titles
return '<span class="dot"></span>';
},
slidesToShow: 1,
slidesToScroll: 1,
prevArrow: '<span class="slickArrow slickArrow--prev"></span>',
nextArrow: '<span class="slickArrow slickArrow--next"></span>',
});
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment