index.wxml 801 B

12345678910111213141516
  1. <view class="preview_box" wx:if="{{previewHideStatus}}" style="top:{{preview_box_top}}" catchtouchmove='stopPageScroll'>
  2. <view class="totalimg">{{imgindex}}/{{previewImgList.length}}</view>
  3. <view class="preview_box1" style="left:{{left}}" bindtap="jingzhi">
  4. <block wx:for="{{previewImgList}}" wx:key="key">
  5. <view class="img_box">
  6. <view bindtouchstart='touchStart' bindtouchmove='touchMove' bindtouchend='touchEnd'>
  7. <movable-area scale-area>
  8. <movable-view direction="all" animation catchscale="onScale" scale scale-min="1" scale-max="5" scale-value="{{scale}}">
  9. <image src="{{item}}" style="width:100%;" mode="widthFix"></image>
  10. </movable-view>
  11. </movable-area>
  12. </view>
  13. </view>
  14. </block>
  15. </view>
  16. </view>