valentina younes
valentina younes

Reputation: 21

Image zooming Ionic 2

I’m trying to build a slider with ion-slides where I want the user to be able to pinch to zoom.

I have tried hard coding it but zooming isn’t smooth and I feel like there is much better ways to do it natively. any Ideas?

Upvotes: 2

Views: 324

Answers (1)

Prashant
Prashant

Reputation: 1385

Did you try adding div with swiper-zoom-container class?

<ion-slides pager="true" style="height:45%" zoom>
<ion-slide *ngFor="let slide of selProd.productImages">
  <div class="swiper-zoom-container">
    <img src="{{slide.image}}">
  </div>
</ion-slide>

Upvotes: 1

Related Questions