31 lines
732 B
JavaScript
Executable File
31 lines
732 B
JavaScript
Executable File
/*--------------- Process Slider ---------------*/
|
|
var swiper = new Swiper(".process-slider", {
|
|
|
|
spaceBetween: 10, // Space between slides
|
|
loop:true, // Enable looping of slides
|
|
|
|
autoplay: {
|
|
delay: 5000, // Delay between slide transitions
|
|
disableOnInteraction: false, // Allow autoplay on user interaction
|
|
},
|
|
|
|
// Pagination settings
|
|
pagination: {
|
|
el: ".swiper-pagination6", // Pagination element
|
|
clickable: true, // Enable clickable pagination bullets
|
|
},
|
|
|
|
breakpoints: {
|
|
450: {
|
|
slidesPerView: 1,
|
|
},
|
|
768: {
|
|
slidesPerView: 2,
|
|
},
|
|
990: {
|
|
slidesPerView: 4,
|
|
},
|
|
},
|
|
|
|
});
|
|
|