如何在 ionic 4 中捏合缩放图像?

NaQ*_*uFi 4 javascript angular ionic4

我在 ionic 4 应用程序中制作了完整的图像查看器模式,但在模式中我想在图像上捏合时放大图像,我如何使用合适的插件或不使用插件来做到这一点?

小智 7

视图中:

<ion-slides [options]="sliderOpt" zoom>
  <ion-slide>
    <div class="swiper-zoom-container">
       <img src="ubication" /> // Replace here
    </div>
  </ion-slide>
</ion-slides>
Run Code Online (Sandbox Code Playgroud)

在 TS 中:

sliderOpt = {
  zoom: {
    maxRatio: 1,
  },
};
Run Code Online (Sandbox Code Playgroud)

参考: https://www.youtube.com/watch? v=U_MFYvZxJ0E