0
마우스 휠의 올빼미 회전식 슬라이더 중 하나만 스크롤하는 옵션이 있습니까? 이전 또는 다음 btn을 클릭하면 현재 슬라이드가 슬라이드되지만 마우스 휠이 슬라이드됩니다.올빼미 회전 목마 2 마우스 휠 슬라이더
HTML
<div class="owl-carousel">
<div class="item">
item
</div>
<div class="item">
item
</div>
<div class="item">
item
</div>
</div>
JS
$('.owl-carousel').owlCarousel({
loop: true,
margin: 30,
nav: true,
responsiveClass: true,
responsive: {
0: {
items: 1
},
600: {
items: 2
},
1000: {
items: 3
}
}
});
var owl = $('.owl-carousel');
owl.on('mousewheel', '.owl-stage', function(e) {
if (e.deltaY > 0) {
owl.trigger('next.owl');
} else {
owl.trigger('prev.owl');
}
e.preventDefault();
});
감사합니다. @Kunal이 작품은 저에게 좋습니다. – canyon