23 lines
517 B
JavaScript
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,
|
|
}
|
|
},
|
|
});
|
|
|
|
})(); |