Reputation: 71
I m using jCarousellite to scroll slider. But mousewheel scroll does not work when I put pauseonHover:true
. Any suggestion?
$('.slider').jCarouselLite({
btnNext: ".next",
btnPrev: ".prev",
vertical: true,
auto: true,
timeout: 2800,
speed: 400,
easing: 'easeOutQuint',
pauseOnHover: true,
start: randNum,
mouseWheel: true
});
Upvotes: 0
Views: 89
Reputation: 2095
Looking at the jCarousel Lite documentation pauseOnHover is not a valid option.
I would recommend using Owl Carousel there's much better documentation and more support through its popularity.
Upvotes: 0