$(".swiper-container").each(function(elem, target){
var swp = target.swiper;
$(this).hover(function() {
swp.autoplay.stop();
}, function() {
swp.autoplay.start();
});
});
$('.swiper-slide').hover(function(){
swiper.autoplay.stop();
}, function(){
swiper.autoplay.start();
});
'Javascript' 카테고리의 다른 글
swiper pagination 두개 사용하기 (0) | 2024.11.06 |
---|---|
스크롤(scroll)시 head/상단에 class 추가 (0) | 2024.02.14 |
text 페이드인,아웃 효과 (fade-in, fade-out) (0) | 2023.11.29 |
주소복사 버튼 (0) | 2023.11.09 |
button 클릭 시 텍스트 복사 (0) | 2023.11.01 |