본문 바로가기

DEVELOP

[plugin] Swiper.js pagination 클릭 시 자동 멈춤 해제

728x90

Swiper.js의 paginaiton 즉, swiper-pagination-bullet 를 클릭 시 autoplay: true;로 옵션 설정을 했을 시, 슬라이더가 자동으로 멈추는 현상이 있다.

이는 default로 자동 멈춤을 해놓았기 때문인데, 아래와 같이 autoplay 옵션을 변경해주면 swiper-pagination-bullet swiper-button-next swiper-button-prev 를 클릭 했을 때 슬라이더 자동 멈춤이 사라진다.

autoplay: {
	delay:4000,// 하나의 슬라이드에서 다음 슬라이드 또는 이전 슬라이드 이동 시 소요 시간
	disableOnInteraction: false
},