微信小程序自定义预览图片功能 -- 可放大拖动

这里把预览图片功能写成一个组件来使用
1.小程序根目录新建一个component 组件目录名称命名为previewImg
在这里插入图片描述
直接上代码
wxml

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

wxss

page{
  height: 100%;
}
.preview_box{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000;
  white-space: nowrap;
  transition: all .3s;
  height: 100%;
  z-index: 99999;
}
.preview_box>.totalimg{
  color: #fff;
  position: absolute;
  z-index: 999;
  top: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.preview_box>.preview_box1{
  height: 100%;
  position: relative;
}
.img_box{
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.img_box>view{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-items: center;
}
movable-view {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #fff;
}

movable-area {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

json

{
  "component": true,
  "usingComponents": {}
}

js

var that;
Component({
  /**
   * 组件的属性列表
   */
  properties: {
    previewImgList: {
      type: Array,
      value: false
    },
    previewImg: {
      type: null,
      value: false
    },
  },
  attached: function () {
    that = this;
  },
  /**
   * 组件的初始数据
   */
  data: {
    preview_box_top: 0,
    left: '0px;',
    touchS: [0, 0],
    touchE: [0, 0],
    index: 0,
    imgindex:0,
    previewHideStatus:false,
    scale: 1,
    scaleObj:{
      scale:1,
      x:0,
      y:0,
      yes:true
    },
    touchStartTime: 0,   // 触摸开始时间
    touchEndTime: 0,     // 触摸结束时间
    lastTapTime: 0,  // 最后一次单击事件点击发生时间
    lastTapTimeoutFunc: null, // 单击事件点击后要触发的函数
  },
  /**
   * 组件的方法列表
   */
  methods: {
    jingzhi(e) { 
      let diffTouch = this.data.touchEndTime - this.data.touchStartTime;
      let curTime = e.timeStamp;
      let lastTime = this.data.lastTapDiffTime;
      this.data.lastTapDiffTime = curTime;

      //两次点击间隔小于300ms, 认为是双击
      let diff = curTime - lastTime;
      if (diff < 300) {
        console.log("double tap")
        clearTimeout(this.data.lastTapTimeoutFunc); // 成功触发双击事件时,取消单击事件的执行
        if(that.data.scale == 1){
          that.setData({
            scale:3
          })
        }else{
          that.setData({
            scale:1
          })
        }
      } else {
        this.data.lastTapTimeoutFunc = setTimeout(function () {
          console.log("single tap")
          if(that.data.scaleObj.yes){
            that.setData({ preview_box_top: '100%' })
          }
        }, 300);
      }
    },
    configqxClick(e) { this.setData({ scopeWritePhotosAlbum: e.detail }) },
    touchStart: function (e) {
      this.data.touchStartTime = e.timeStamp //时间点
      let sx = e.touches[0].pageX
      let sy = e.touches[0].pageY
      this.data.touchS = [sx, sy];
    },
    touchMove: function (e) {
      let start = this.data.touchS;
      let sx = e.touches[0].pageX;
      let sy = e.touches[0].pageY;
      this.data.touchE = [sx, sy];
    },
    touchEnd: function (e) {
      this.data.touchEndTime = e.timeStamp //时间点
      let start = this.data.touchS
      let end = this.data.touchE
      let scaleObj = this.data.scaleObj
      //如果((start[0] < end[0] - 50) && (scaleObj.scale==1&&scaleObj.x==0&&scaleObj.y==0)) //左滑动
      //如果((start[0] > end[0] + 50) && (scaleObj.scale==1&&scaleObj.x==0&&scaleObj.y==0)) //右滑动
      if(scaleObj.yes){
        if(end[0] == 0){
          console.log('点击')
        }else if((start[0] < end[0] - 50) && (scaleObj.scale==1&&scaleObj.x==0&&scaleObj.y==0)){
          if (this.data.index !== 0) {
            this.data.index -= 1;
            this.data.imgindex -=1;
            this.setData({ index: this.data.index, left: '-' + this.data.index + '00%;transition: all .5s;', imgindex: this.data.imgindex });
          }
        }else if((start[0] > end[0] + 50) && (scaleObj.scale==1&&scaleObj.x==0&&scaleObj.y==0)){
          if (this.data.index !== this.data.previewImgList.length - 1) {
            this.data.index += 1;
            this.data.imgindex += 1;
            this.setData({ index: this.data.index, left: '-' + this.data.index + '00%;transition: all .5s;', imgindex: this.data.imgindex });
          }
        }else{
          console.log('下滑/上滑');
          this.setData({ preview_box_top: '100%' })
        }
        this.data.touchE = [0, 0];
      }

      setTimeout(()=>{
        if(this.data.scaleObj.x == 0 && this.data.scaleObj.y == 0 && this.data.scaleObj.scale == 1){
          console.log('yes is true');
          this.data.scaleObj.yes = true;
        }
      },500)
    },
    showPreview() {
      this.setData({ previewHideStatus: true, preview_box_top: 0 })
    },
    hidePreview() {
      this.setData({ previewHideStatus: false, preview_box_top: 0 })
    },
    onScale(e) {
      this.data.scaleObj = {
        scale:e.detail.scale,
        x:e.detail.x,
        y:e.detail.y,
        yes:false
      }
    },
    stopPageScroll() { return },
  },
  observers: {
    'previewImgList': function (arr) {
      console.log(arr)
    },
    'previewImg':function(img){
      this.data.previewImgList.map((item,index)=>{
        if(item == img){
          let imgindex = index;
          imgindex+=1;
          this.setData({ index: index, imgindex: imgindex, left: '-'+index+'00%;' })
        }
      })
    }
  },
})

使用组件
在页面引入组件 传2个参数previewImgList需要预览的图片数组 previewImg//当前显示图片 – 这张图片数组里面必须要有
wxml

<image src="{{imgList[0]}}" catchtap="openpreviewImg" mode="widthFix"></image>
<previewImg id="previewComponent" previewImgList = "{{imgList}}" previewImg = "{{defImg}}"  />

json

{
  "usingComponents": {
    "previewImg":"/component/previewImg/previewImg"
  },
  "navigationStyle":"custom"
}

js

Page({
  data: {
    imgList: ['http://www.diartop.net/upload/2020/05/10/915931ba28cf3422.jpg', 'http://www.diartop.net/upload/2020/04/13/a85661ce008cd57c.jpg','http://www.diartop.net/upload/2020/04/13/b9bf1e006ae09ee3.jpg'],
    defImg:''
  },
  openpreviewImg(){
    this.selectComponent("#previewComponent").showPreview();
    this.setData({ defImg:this.data.imgList[0] })
  },
})
  • 5
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 6
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值