2025-02-02 17:15:45 -05:00

23 lines
517 B
JavaScript

(function () {
'use strict';
// swiper with navigation
var swiper = new Swiper(".swiper-related-jobs", {
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
loop: true,
autoplay: {
delay: 1500,
disableOnInteraction: false,
},
breakpoints: {
"@0.00": {
slidesPerView: 1,
spaceBetween: 10,
}
},
});
})();