when putting the property animationHandler="fade" when clicking the carousel it skips slides #676
Unanswered
brayan-orellanos
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
my problem is that when clicking on the carousel when it is on fade, it skips 2 slides, I don't know if it can be prevented or there is a solution to avoid the change of slide when clicking on the carousel.
<Carousel showArrows={false} showIndicators={false} showStatus={false} animationHandler="fade" swipeable={false} infiniteLoop={false} className="carousel_product" onClickItem > {product && images.map((el, i) => ( <img src={el.imagen} key={i} alt={el.alt} className="img_product" /> ))} </Carousel>
those are the properties that I have in the carousel.
Beta Was this translation helpful? Give feedback.
All reactions