Skip to content

Instantly share code, notes, and snippets.

View kythuatwebso's full-sized avatar

Kỹ thuật WEBSO kythuatwebso

View GitHub Profile
@kythuatwebso
kythuatwebso / gist:17aa1a65be749c94ce147ae5ecd77620
Last active August 26, 2022 09:16 — forked from urre/gist:30523173fb22e3a375fa
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>';
}
});