Hi,
At first - good job, slick is fantastic!
I don't know how to manage to use slick defined as:
variableWidth: true
autoplay: true
But without stopping on each item. I'd like to have a smooth carousel. Is that possible now?
Try something like this.
$(function(){
$('.slider').slick({
variableWidth: true.
autoplay: true,
autoplaySpeed: 0,
speed: 10000,
cssEase: 'linear',
slidesToShow: 1,
slidesToScroll: 1
});
});
Seems that
cssEase: 'linear'
did the trick, thanks!
Thanks, but what about pauseOnHover ?
Most helpful comment
Try something like this.