16 lines
No EOL
507 B
JavaScript
16 lines
No EOL
507 B
JavaScript
$(document).ready(function(){
|
||
$('.the-slider').slick({
|
||
dots: true,
|
||
infinite: true,
|
||
speed: 300,
|
||
slidesToShow: 1,
|
||
adaptiveHeight: true,
|
||
autoplay: true,
|
||
autoplaySpeed: 2000,
|
||
prevArrow: '<button type="button" class="slick-prev">❮</button>',
|
||
nextArrow: '<button type="button" class="slick-next">❯</button>',
|
||
customPaging: function(slider, i) {
|
||
return '<button type="button">' + '</button>';
|
||
}
|
||
});
|
||
}); |