欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序movable view移动图片和双指缩放实例代码

程序员文章站 2022-11-25 09:59:59
movable-area是微信小程序的新组件,可以用来移动视图区域movable-view。移动方向可选择任何、垂直和平行。可移动区域里包含其他文本、图片、按钮等组件。可移...

movable-area是微信小程序的新组件,可以用来移动视图区域movable-view。移动方向可选择任何、垂直和平行。可移动区域里包含其他文本、图片、按钮等组件。可移动区域可绑定touchend等事件。movable-view的参数可调整动画效果。

先从movable-view开始说起吧. movable-view是小程序自定义的组件.其描述为:"可移动的视图容器,在页面中可以拖拽滑动". 官方文档地址:

.

值得注意的是文档中有一段备注: "当movable-view小于movable-area时,movable-view的移动范围是在movable-area内;当movable-view大于movable-area时,movable-view的移动范围必须包含movable-area(x轴方向和y轴方向分开考虑)". 也就是说父容器movable-area是可以比子容器movable-view小的,但是子容器的移动范围必须包括父容器.

先看官方实例代码:

<view class="section">
 <view class="section__title">movable-view区域小于movable-area</view>
 <movable-area style="height: 200px;width: 200px;background: red;">
 <movable-view style="height: 50px; width: 50px; background: blue;" x="{{x}}" y="{{y}}" direction="all">
 </movable-view>
 </movable-area>
 <view class="btn-area">
 <button size="mini" bindtap="tap">click me to move to (30px, 30px)</button>
 </view>
 <view class="section__title">movable-view区域大于movable-area</view>
 <movable-area style="height: 100px;width: 100px;background: red;" direction="all">
 <movable-view style="height: 200px; width: 200px; background: blue;">
 </movable-view>
 </movable-area>
</view>

这里面有个错误,应该是编写人的一点小失误吧. 第二个movable-area的属性direction应该写在movable-view上.

 <movable-area style="height: 100px;width: 100px;background: red;" >
  <movable-view style="height: 200px; width: 200px; background: blue;" direction="all">
  </movable-view>
 </movable-area>

看下效果:

1) 当movable-view区域小于movable-area时,子容器movable-view只能在父容器内移动.  下图的效果是设置了属性 out-of-bounds="true"的效果. out-of-bounds可以染子容器到达父容器边界时有个超出边界然后回弹的动画. 并不是真正能让子容器移动到父容器以外.

2) 当movable-view区域大于movable-area时,子容器移动的范围必须包括父容器.                    

微信小程序movable view移动图片和双指缩放实例代码 微信小程序movable view移动图片和双指缩放实例代码                             

第二种情况中,把父容器看做手机屏幕可视区域,子容器看做要查看的长图,大图. 就可以实现拖动查看图片的效果. 如果图片时动态加载的,不是固定的图片,就要兼容图片宽高小于屏幕可视宽高和图片宽高大于可视屏幕宽高的可能性,也就是要考虑到以上两种情况.

我们要在movable组件加载的同时设置好movable-view的宽高,因为movable组件加载成功后再去改变movable-view的大小,可移动区域是不会变的. 我们可以通过页面中要查看的图片的onload事件中获取图片宽高(目前我只发现bindload事件能获取到图片宽高),然后存储起来imgwidth和imgheight. 当用户点击图片时,在bindtap事件中设置好movable-view的宽高,同时将movable-area的弹窗wx;if设置为true.

 <!-- 要查看的图片列表 -->
   <view class="flex-wrap flex-pic">
     <view class="piclist">   
     <image wx:for="{{item.imglist}}" wx:for-item="itemimg" wx:key="*this" id="{{'rfnd_'+index}}" bindload="imageonload" src="{{ itemimg}}" bindtap="showresizemodal" data-src="{{itemimg}}"></image>   
    </view>
   </view>

因为要查看的是一个图片列表, 我用了一个数组去存储每个图片的宽高,然后通过图片id来关联

/**
 * 加载图片
 */
 imageonload:function(e){
 var id = e.currenttarget.id
 this.data.imgidlist[id] = {
  width:e.detail.width,
  height:e.detail.height
 }
 },
 模板页面
<!--components/resizepicmodal/resizepicmodal.wxml-->
<template name="resizepic">
 <scroll-view class="backdrop"> 
 <view class="close-icon" bindtap="closeresizemodal"> 
  取消预览
 </view>
 <movable-area style="width:100%;height:100%;" >
  <movable-view direction="all" 
  out-of-bounds="true" x="{{img.x}}" y="{{img.y}}" >
  <image mode="widthfix" class="dtl-img" src="{{img.currentsrc}}"></image>
  </movable-view>
 </movable-area> 
 </scroll-view> 
 </template>
 /**
 * 打开弹窗
 */
 showresizemodal: function (e) {
 var src = e.currenttarget.dataset.src;
 var x = 0
 var y =0
 try {
  var width = this.imgidlist[e.currenttarget.id].width; //图片原宽
  var height = this.imgidlist[e.currenttarget.id].height; //图片原高
  
  //小程序默认固定宽320px,获取top和left值,使图片居中显示
  height = height * (320 / width);
  width = 320;
    
  x = (app.windowwidth - width) / 2 
  y = (app.windowheight - height) / 2

 } catch (e) { }
 var img = {
  x: x,
  y: y,26  currentsrc: src,
 };
 this.setdata({ img: img, ischeckdtl: true });
 
 },

  部分css代码

.backdrop{
 background: rgba(0, 0, 0, 1);
 width:100%;
 height: 100%;
 position: fixed;
 top:0;
 left:0;
}

以上基本上可以完成一个点击查看图片的需求.

然而如果再支持双指缩放的话,movable-view实现不了.我暂没想出来怎么实现,如果有人知道,希望能够指点迷津. 主要原因是因为还是我上文提到的那句话:"movable组件加载成功后再去改变movable-view的大小,可移动区域是不会变的".缩放后图片大小肯定会改变的. 缩小还好,一旦放大,可移动区域还是原来的不会改变.想象一下,如果一张宽度刚刚好时屏幕可视宽度的图片,放大后,这张图片就只能在屏幕可视宽度windowwidth的范围中移动,看不到左也看不到右边超出的部分.

所以如果既要可移动图片又要可缩放,就不能用movable-view组件了,自己写个吧. 原来bindtouchmove会触发页面的滚动条,但是现在微信好像已经修复了这个bug,我今天在真机上测试没有出现这个问题.

 自定义控件resizepicmodal.wxml:

<!-- 缩放 -->
<template name="resizepic">
 <scroll-view class="backdrop" catchtouchmove="bindtouchmove" catchtouchend="bindtouchend" bindtouchstart="bindtouchstart" > 
 <view class="close-icon" bindtap="closeresizemodal"> 
  取消预览
 </view>
  <image catchtouchmove="bindtouchmove" bindtouchend="bindtouchend" bindtouchstart="bindtouchstart" 
  style=" transform: scale({{img.basescale}}); position:absolute; top:{{img.top}}px; left:{{img.left}}px; "
  mode="widthfix" class="dtl-img" src="{{img.currentsrc}}"></image> 
 </scroll-view> 
 </template>

 js: resizepicmodal.js

 /**
 * 使用方法:
 * 1) wxhtml要缩放的图片 必须 传入 src 以及绑定 bindtap事件,
 * e.g:  
 * <image bindtap="toggledtl" data-src="{{item}}" wx:for="{{productcard.arrimg}}" wx:key="*this" src="{{item}}" style="width:100%" mode="widthfix"></image>
 * 2) wxhtml 要引入modal模板(ischeckdtl无需再定义):
 *  <view wx:if="{{ischeckdtl}}">
 *  <import src="/components/resizepicmodal/resizepicmodal.wxml"/>
 *  <template is="resizepic" data="{{img}}"></template>
 *  </view>
 * 3) js页面要引入js文件,覆盖当前页面的事件:
 * var resizepicmodalservice = require ('../../components/resizepicmodal/resizepicmodal.js')
 * var resizepicmodal = {}
 * 4) 在onload事件中,实例化resizepicmodal
 *  resizepicmodal = new resizepicmodalservice.resizepicmodal()
 */
var app = getapp()
let modalevent = {
 distancelist: [0, 0],//存储缩放时,双指距离.只有两个数据.第一项为old distance.最后一项为new distance
 dispoint: { x: 0, y: 0 },//手指touch图片时,在图片上的位置
 imgidlist:{},
 /**
 * 打开弹窗
 */
 showresizemodal: function (e) {
 var src = e.currenttarget.dataset.src;
 var x = 0
 var y =0
 try {
  var width = this.imgidlist[e.currenttarget.id].width; //图片原宽
  var height = this.imgidlist[e.currenttarget.id].height; //图片原高
  //小程序固定宽320px
  height = height * (320 / width);
  width = 320;
  x = (app.windowwidth - width) / 2 //> 0 ? (app.windowwidth - width) / 2 : 0;
  y = (app.windowheight - height) / 2// > 0 ? (app.windowheight - height) / 2 : 0;
 } catch (e) { }
 var img = {
  top: y,
  left: x,
  x: x, y: y,
  width: '100%',
  basescale: 1,
  currentsrc: src,
 };
 this.setdata({ img: img, ischeckdtl: true });
 },
 /**
 * 关闭弹窗
 */
 closeresizemodal:function(){
 this.setdata({ ischeckdtl: false })
 },
 /**
 * 加载图片
 */
 imageonload:function(e){
 var id = e.currenttarget.id
 this.imgidlist[id] = {
  width:e.detail.width,
  height:e.detail.height
 }
 },
 /**
 * bindtouchmove
 */
 bindtouchmove: function (e) {
 if (e.touches.length == 1) {//一指移动当前图片
  this.data.img.left = e.touches[0].clientx - this.dispoint.x
  this.data.img.top = e.touches[0].clienty - this.dispoint.y
  this.setdata({ img: this.data.img })
 }
 if (e.touches.length == 2) {//二指缩放
  var xmove = e.touches[1].clientx - e.touches[0].clientx
  var ymove = e.touches[1].clienty - e.touches[0].clienty
  var distance = math.sqrt(xmove * xmove + ymove * ymove);//开根号
  this.distancelist.shift()
  this.distancelist.push(distance)
  if (this.distancelist[0] == 0) { return }
  var distancediff = this.distancelist[1] - this.distancelist[0]//两次touch之间, distance的变化. >0,放大图片.<0 缩小图片
  // 假设缩放scale基数为1: newscale = oldscale + 0.005 * distancediff
  var basescale = this.data.img.basescale + 0.005 * distancediff
  if(basescale>0){
  this.data.img.basescale = basescale
  var imgwidth = basescale * parseint(this.data.img.imgwidth) 
  var imgheight = basescale * parseint(this.data.img.imgheight)
  this.setdata({ img: this.data.img })
  }else{
  this.data.img.basescale = 0
  this.setdata({ img: this.data.img })
  }
 }
 },
 /**
 * bindtouchend
 */
 bindtouchend: function (e) {
 if (e.touches.length == 2) {//二指缩放
  this.setdata({ ischeckdtl: true })
 }
 },
 /**
 * bindtouchstart
 */
 bindtouchstart: function (e) {
 this.distancelist = [0, 0]//回复初始值
 this.dispoint = { x: 0, y: 0 }
 if (e.touches.length == 1) {
  this.dispoint.x = e.touches[0].clientx - this.data.img.left
  this.dispoint.y = e.touches[0].clienty - this.data.img.top
 }
 }
}
function resizepicmodal(){
 let pages = getcurrentpages()
 let curpage = pages[pages.length - 1]
 object.assign(curpage, modalevent)//覆盖原生页面事件
 this.page = curpage
 curpage.resizepicmodal = this
 return this
}
module.exports = {
 resizepicmodal
}

业务页面wxml:引入自定义控件模板

<view class="flex-wrap flex-pic">
    <view class="piclist">   
     <image wx:for="{{item.imglist}}" wx:for-item="itemimg" wx:key="*this" id="{{'rfnd_'+index}}" bindload="imageonload" src="{{ itemimg}}" bindtap="showresizemodal" data-src="{{itemimg}}"></image>   
    </view>
 </view>
<!-- 缩放 -->
 <view wx:if="{{ischeckdtl}}">
 <import src="/components/resizepicmodal/resizepicmodal.wxml"/>
 <template is="resizepic" data="{{img}}"></template>
 </view>

 业务页面js,引用js文件,实例化resizepicmodal

var that
 var resizepicmodal = {}
 var app = getapp()
 var resizepicmodalservice = require('../../components/resizepicmodal/resizepicmodal.js')
 /**
  * 生命周期函数--监听页面加载
  */
 onload: function (options) {
  that = this 8  resizepicmodal = new resizepicmodalservice.resizepicmodal()
 }

总结

以上所述是小编给大家介绍的微信小程序movable view移动图片和双指缩放实例代码,希望对大家有所帮助