1

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

4

1 回答 1

1

尝试这个:

const settings = {
  slidesToShow: 3,
  slidesToScroll: 1,
  infinite: true,
  autoplay: true,
  speed: 10000,
  autoplaySpeed: 0,
  cssEase: 'linear',
  arrows: false,
};
于 2020-01-09T14:16:43.100 回答