슬라이드 무한 재생
본문
슬라이드 무한 재생 할려고 하는데 어떤걸 수정하면 되나요?
$(document).ready(function () {
// visual
var visual = $(".visual");
function introOn() {
setTimeout(function(){
visual.find(".bg").addClass("on");
}, 200);
setTimeout(function(){
visual.find(".text").addClass("on");
}, 1600);
setTimeout(function () {
$("header").addClass("white");
visualSlideOn();
}, 2200);
}
introOn();
function visualSlideOn() {
var visualSwiper = new Swiper(".visual .slideBox", {
effect: "fade",
loop: true,
speed: 1000,
autoplay: {
delay: 4200,
disableOnInteraction:true,
},
watchSlidesProgress: true,
navigation: {
prevEl: ".visual .prevButton",
nextEl: ".visual .nextButton",
},
});
}
})
답변 2
아래의 이유로 안될수 있습니다~
1. 슬라이드의 개수가 1개 이하인 경우
2. Swiper 라이브러리 버전이 낮은 경우
disableOnInteraction:true,
이부분을 false 로 수정해보세요
답변을 작성하시기 전에 로그인 해주세요.