슬라이드 문의드립니다..ㅠㅠ
본문
위 사이트 상단에 슬라이드 넣고
자동 돌아가는거 어찌어찌 찾아서 했는데
끝으로 가면 더이상 안돌아가는데
무한으로 돌아가게 하려면 소스를 어떻게 수정 해야 할까요? ㅠㅠ
답변 1
다음 코드가 도움이 될지 모르겠습니다.
<script>
var swiper = new Swiper(".mySwiper", {
// slidesPerView: 'auto',
slidesPerView: 1,
spaceBetween: 30,
autoplay: {
delay: 2500,
disableOnInteraction: false
},
loop : true,
// loopAdditionalSlides : 1,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
breakpoints: { //세부옵션 조정하세요
// 320px
320: {
// slidesPerView: 1,
spaceBetween: 20
},
// 640px
640: {
// slidesPerView: 1,
spaceBetween: 20
}
}
});
</script>
답변을 작성하시기 전에 로그인 해주세요.