如何缩放<ionic-scroll>元素?

时间:2018-08-31 12:55:19

标签: angular ionic-framework ionic3 zoom

我有这个组件,我希望能够放大子块:

<ion-scroll scrollY="true"
        overflow-scroll="false"
        zooming="true"
        style="height: 72vh">
   <div *ngIf="type === 'html'"
       class="custom-content"
       [innerHtml]="content">
   </div>

   <ion-content *ngIf="type === 'pdf'"
           [ngClass]="{'pdf-view': type === 'pdf'}">
       <pdf-viewer [src]="content"
            [original-size]="false"
            style="display: block">
       </pdf-viewer>
   </ion-content>
</ion-scroll>

但是变焦不起作用。你们有什么想法怎么做吗?

谢谢

0 个答案:

没有答案