27 lines
593 B
JavaScript
27 lines
593 B
JavaScript
(function () {
|
|
'use strict'
|
|
|
|
// keyboard control
|
|
var swiper = new Swiper(".keyboard-control", {
|
|
slidesPerView: 1,
|
|
spaceBetween: 30,
|
|
keyboard: {
|
|
enabled: true,
|
|
},
|
|
pagination: {
|
|
el: ".swiper-pagination",
|
|
clickable: true,
|
|
},
|
|
navigation: {
|
|
nextEl: ".swiper-button-next",
|
|
prevEl: ".swiper-button-prev",
|
|
},
|
|
loop: true,
|
|
autoplay: {
|
|
delay: 1500,
|
|
disableOnInteraction: false
|
|
}
|
|
});
|
|
|
|
})();
|