0

I'm using Bootstrap Carousel and i have a problem on mobile which is that i can't pinch zoom and use swipe gesture at the same time in the image of the carousel only if i deactivated the swipe. How can i allow pinch zoom and swipe in bootstrap carousel ?

I tried to add the following css but it's not working :

.carousel.pointer-event {
  touch-action: auto;
}
Abdo Rabah
  • 1,670
  • 2
  • 15
  • 31

1 Answers1

2
.carousel.pointer-event {
  touch-action: pan-y pinch-zoom;
}