chill_hugoplate/assets/js/main.js

24 lines
446 B
JavaScript
Raw Normal View History

2023-05-25 10:41:54 +00:00
// main script
(function () {
"use strict";
// ####################### Testimonial Slider #########################
new Swiper(".testimonial-slider", {
spaceBetween: 24,
loop: true,
pagination: {
el: ".testimonial-slider-pagination",
type: "bullets",
clickable: true,
},
breakpoints: {
768: {
slidesPerView: 2,
},
992: {
slidesPerView: 3,
},
},
});
})();