-
JS / swiper linear autoplay 물흐르듯 슬라이드 구현하기Web dev/JavaScript 2023. 6. 17. 17:57728x90반응형
물흐르듯이 스와이퍼를 구현하려면 CSS 를 수정해주면된다.
disableOnInteractiond옵션을 false로 해주면 스와이퍼를 잡고 움직여도 다시 물흐르듯 움직인다.
아니면 아예 터치안되도록 처리하는것도 괜찮을 것 같다.
let sectionSwiper = new Swiper(".swiper-container.section_swiper", { slidesPerView: "auto", loop:true, observeParents:true, observe:true, autoplay: { delay: 0, disableOnInteraction: false }, speed: 5000, });
.section2 .section_swiper > ul{ align-items: center; /* 이건 빼도 된다. */ -webkit-transition-timing-function:linear!important; -o-transition-timing-function:linear!important; transition-timing-function:linear!important; }
728x90반응형'Web dev > JavaScript' 카테고리의 다른 글
JS / modal scroll방지시 화면 울렁이는 이슈 (2) 2023.06.25 JS / 웹접근성 팝업에서 탭 이동시 벗어나지 않게 하기 (0) 2023.06.24 JS / swiper 옵션 정리 (0) 2023.06.11 JS / sort() 매서드로 정렬하기 (0) 2023.04.30 JS / 객제 지향 프로그래밍 추상화,캡슐화,상속,다형성 (0) 2023.04.30