react-multi-carousel icon indicating copy to clipboard operation
react-multi-carousel copied to clipboard

How to make carousel items move continuously like an animation?

Open ibrahimrehman1 opened this issue 2 years ago • 2 comments

I am using react-multi-carousel in my application to display multiple logos at the same time. As of now, the carousel is working but the problem is that when the carousel moves, it immediately displays the other logos. what I want to have is that there should be a continuous animation among the carousel items.

Is there any way to achieve this?

This is the current configuration:

const responsive = { desktop: { breakpoint: { max: 3000, min: 1024 }, items: 7, // No of carousel items visible in desktop slidesToSlide: 3, }, tablet: { breakpoint: { max: 1024, min: 464 }, items: 5, // No of carousel items visible in tablet slidesToSlide: 2, }, mobile: { breakpoint: { max: 464, min: 0 }, items: 2, // No of carousel items visible in mobile slidesToSlide: 1, }, };

<Carousel swipeable={false} draggable={false} showDots={false} responsive={responsive} ssr={true} infinite={true} autoPlay={true} autoPlaySpeed={3000} keyBoardControl={true} customTransition="all 2" transitionDuration={500} containerClass="carousel-container" removeArrowOnDeviceType={["tablet", "mobile", "desktop"]} dotListClass="custom-dot-list-style" itemClass="carousel-item-padding-40-px" > ... </Carousel>

ibrahimrehman1 avatar Sep 19 '22 16:09 ibrahimrehman1

It's coming soon. I got it almost working here: https://www.junia.ai/art

YIZHUANG avatar Apr 03 '23 00:04 YIZHUANG

Hi, any update on this? Has it been implemented?

Rica02 avatar Jun 17 '24 04:06 Rica02