i am trying to create infinite slideshow without pause this are my settings for the react-slick slider
const settings = {
infinite: true,
slidesToShow: 3,
autoplay: true,
speed: 5000,
autoplaySpeed: 0,
arrows: false,
slidesToScroll: 4,
easing: "linear"
};
this is the closest i was able to achieve but i'm still getting a slight pause
i would like to know if this even possible with react-slick or maybe there are other libraries that will match my needs