Is there a way to let users scroll free inside a slick slider without jumping back to an element?
At the moment I can only scroll from one slider item to the next. I want to allow scrolling like in a browser with the mouse or by dragging the elements.
I found the option swipeToSlide
which allows users to drag or swipe directly to a slide irrespective of slidesToScroll
.
That's nice but not a free scrolling with the mouse.
Is there any solution to to that?
Here's my current slick code:
$('.multiple-items').slick({
infinite: true,
swipeToSlide: true,
slidesToShow: 3,
slidesToScroll: 3
});