자동 슬라이드요~ 채택완료
이걸 자동으로 슬라이드 되게 할려면 어떻게 해야 하나요??
</p>
<p> lectureSwiper[q]= new Swiper(".lec_list_swiper"+q, {
slidesPerView: "auto",
// loop:true,
observer: true,
observeParents: true,
noSwipe:true,
noSwipingClass:'no_swiping',
pagination: {
el: $(this).find(".swiper-pagination"),
type: "progressbar",
},
navigation: {
nextEl: $(this).find(".swiper-button-next"),
prevEl: $(this).find(".swiper-button-prev"),
},
});
});
}</p>
<p>
답변 1개
안녕하세요
아래의 내용을 참고해 보세요.
lectureSwiper[q] = new Swiper(".lec_list_swiper" + q, {
slidesPerView: "auto",
// loop:true,
observer: true,
observeParents: true,
noSwipe: true,
noSwipingClass: 'no_swiping',
pagination: {
el: $(this).find(".swiper-pagination"),
type: "progressbar",
},
navigation: {
nextEl: $(this).find(".swiper-button-next"),
prevEl: $(this).find(".swiper-button-prev"),
},
autoplay: { // 자동 슬라이드 옵션 추가
delay: 3000, // 슬라이드 전환 시간 (밀리초 단위)
disableOnInteraction: false, // 사용자가 슬라이드와 상호작용해도 자동 슬라이드 계속 유지
},
});
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
존경합니다..