ionic实现长图显示与双指缩放

来源:互联网 发布:大数据存储方案 编辑:程序博客网 时间:2024/06/05 23:54

html代码

<ion-content class="has-header">    <ion-scroll  direction="xy" class="msg-file" style="height:100%" zooming="true" min-zoom="1" max-zoom="2" overflow-scroll="false">      <img ng-src="{{vm.file}}" class="msg-file"/>    </ion-scroll></ion-content>

css代码

.has-header .scroll{    height: 100%;  }.msg-file{    width:100%;  }