Skip to content

Instantly share code, notes, and snippets.

@urre
Created October 27, 2014 13:44
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save urre/30523173fb22e3a375fa to your computer and use it in GitHub Desktop.
Save urre/30523173fb22e3a375fa to your computer and use it in GitHub Desktop.
Slick.js slider with thumbnails
$('.specs__slider').slick({
dots: true,
centerMode: true,
focusOnSelect: true,
arrows: false,
customPaging: function(slider, i) {
return '<div class="thumbnails">' +$(slider.$slides[i]).find('img').prop('outerHTML')+ '</div>';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment