20 lines
543 B
JavaScript
20 lines
543 B
JavaScript
$(document).ready(function () {
|
|
var swiper = new Swiper('#js-slider-article', {
|
|
slidesPerView: 3,
|
|
spaceBetween: 16,
|
|
loop: false,
|
|
rewind: true,
|
|
lazy: true,
|
|
autoplay: {
|
|
delay: 2000,
|
|
},
|
|
navigation: {
|
|
nextEl: "#js-slider-article .swiper-button-next",
|
|
prevEl: "#js-slider-article .swiper-button-prev",
|
|
},
|
|
pagination: {
|
|
el: "#js-slider-article .swiper-pagination",
|
|
clickable: true,
|
|
},
|
|
});
|
|
});
|