微信小程序中實現(xiàn)手指縮放圖片的示例代碼
公司開發(fā)微信小程序,pm想實現(xiàn)如下需求:
用手指縮放圖片。其實在實現(xiàn)這個需求以前,并不知道,微信公眾號以及微信小程序里面有一個原生的api就自帶這個特效,而且微信朋友圈也是用的這個api。wx.previewImage,就是它。預(yù)覽圖片。除了不能預(yù)覽開發(fā)環(huán)境的本地電腦的圖片外,你手機真機的圖片,以及http服務(wù)器上的圖片都是可以預(yù)覽的,而且縮放功能做得很流暢。下面就說說如何用js來實現(xiàn)這個功能吧。
先上源碼,然后在逐步剖析:
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('雙手指觸發(fā)開始')
// 注意touchstartCallback 真正代碼的開始
// 一開始我并沒有這個回調(diào)函數(shù),會出現(xiàn)縮小的時候有瞬間被放大過程的bug
// 當(dāng)兩根手指放上去的時候,就將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是<image>組件的api類似<img>的onload屬性
this.setData({
'touch.baseWidth': e.detail.width,
'touch.baseHeight': e.detail.height,
'touch.scaleWidth': e.detail.width,
'touch.scaleHeight': e.detail.height
})
}
})
wxml文件對應(yīng)如下,就不做解釋了:
<view class="container">
<view bindtouchmove="touchmoveCallback" bindtouchstart="touchstartCallback">
<image src="../../resources/pic/cat.jpg" style="width: {{ touch.scaleWidth }}px;height: {{ touch.scaleHeight }}px" bindload="bindload"></image>
</view>
</view>
寫到這里發(fā)現(xiàn),就算小程序用不了這個js,我的ht5頁面也是可以用的,哈哈。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
詳解用原生JavaScript實現(xiàn)jQuery的某些簡單功能
本篇文章主要對用原生JavaScript實現(xiàn)jQuery的某些簡單功能進行詳細全面的講解,具有很好的參考價值,需要的朋友一起來看下吧2016-12-12
小程序根據(jù)手機機型設(shè)置自定義底部導(dǎo)航距離
這篇文章主要為大家詳細介紹了小程序根據(jù)手機機型設(shè)置自定義底部導(dǎo)航距離,具有一定的參考價值,感興趣的小伙伴們可以參考一下2019-06-06

