test-careousel정훈 김2024-07-19T01:34:42+00:00
Document
$(document).ready(function(){
var news = new Swiper(".main-content05-swiper", {
slidesPerView: 1.2,
allowTouchMove: true,
//autoHeight : true,
centeredSlides: false,
//spaceBetween: 60,
autoplay:{
delay: 3000,
disableOnInteraction: false,
},
speed: 500,
loop:true,
observer: true, // 추가
observeParents: true, // 추가
navigation: {
nextEl: (".main-content05-control .swiper-button-next"),
prevEl: (".main-content05-control .swiper-button-prev"),
},
breakpoints: {
// 화면의 넓이가 320px 이상일 때
// 화면의 넓이가 768px 이상일 때
1024: {
slidesPerView: 1.2,
spaceBetween: 18,
},
}
});
});