슬라이드 무한 재생 채택완료
슬라이드 무한 재생 할려고 하는데 어떤걸 수정하면 되나요?
Copy
$(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개
답변을 작성하려면 로그인이 필요합니다.
로그인