首頁  >  文章  >  web前端  >  微信小程式中實作手指縮放圖片的範例程式碼

微信小程式中實作手指縮放圖片的範例程式碼

亚连
亚连原創
2018-05-30 16:24:311564瀏覽

本篇文章主要介紹了微信小程式中實作手指縮放圖片的範例程式碼,現在分享給大家,也給大家做個參考。

公司開發微信小程序,pm想實現如下需求:

用手指縮放圖片。其實在實現這個需求以前,並不知道,微信公眾號以及微信小程式裡面有一個原生的api就自帶這個特效,而且微信朋友圈也是用的這個api。 wx.previewImage,就是它。預覽圖片。除了無法預覽開發環境的本地電腦的圖片外,你手機真機的圖片,以及http伺服器上的圖片都是可以預覽的,而且縮放功能做得很流暢。下面就說說如何用js來實現這個功能吧。

先上原始碼,然後在逐步剖析:

Page({
  data: {
    touch: {
      distance: 0,
      scale: 1,
      baseWidth: null,
      baseHeight: null,
      scaleWidth: null,
      scaleHeight: null
    }
  },
  touchstartCallback: function(e) {
    // 单手指缩放开始,也不做任何处理
    if(e.touches.length == 1) return
    console.log('双手指触发开始')
    // 注意touchstartCallback 真正代码的开始
    // 一开始我并没有这个回调函数,会出现缩小的时候有瞬间被放大过程的bug
    // 当两根手指放上去的时候,就将distance 初始化。
    let xMove = e.touches[1].clientX - e.touches[0].clientX;
    let yMove = e.touches[1].clientY - e.touches[0].clientY;
    let distance = Math.sqrt(xMove * xMove + yMove * yMove);
    this.setData({
      'touch.distance': distance,
    })
  },
  touchmoveCallback: function(e) {
    let touch = this.data.touch
    // 单手指缩放我们不做任何操作
    if(e.touches.length == 1) return
    console.log('双手指运动')
    let xMove = e.touches[1].clientX - e.touches[0].clientX;
    let yMove = e.touches[1].clientY - e.touches[0].clientY;
    // 新的 ditance
    let distance = Math.sqrt(xMove * xMove + yMove * yMove);
    let distanceDiff = distance - touch.distance;
    let newScale = touch.scale + 0.005 * distanceDiff
    // 为了防止缩放得太大,所以scale需要限制,同理最小值也是
    if(newScale >= 2) {
      newScale = 2
    }
    if(newScale <= 0.6) {
      newScale = 0.6
    }
    let scaleWidth = newScale * touch.baseWidth
    let scaleHeight = newScale * touch.baseHeight
    // 赋值 新的 => 旧的
    this.setData({
      'touch.distance': distance,
      'touch.scale': newScale,
      'touch.scaleWidth': scaleWidth,
      'touch.scaleHeight': scaleHeight,
      'touch.diff': distanceDiff
    })
  },
  bindload: function(e) {
   // bindload 这个api是组件的api类似的onload属性
   this.setData({
     'touch.baseWidth': e.detail.width,
     'touch.baseHeight': e.detail.height,
     'touch.scaleWidth': e.detail.width,
     'touch.scaleHeight': e.detail.height
   })
  }
})

wxml檔案對應如下,就不做解釋了:


  
    
  

上面是我整理給大家的,希望今後對大家有幫助。

相關文章:

Vue專案中如何引入icon圖示

#JavaScript中的E-mail 位址格式驗證

javascript效能最佳化之分時函數的介紹

以上是微信小程式中實作手指縮放圖片的範例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn