美文网首页
Vue移动端手势事件

Vue移动端手势事件

作者: Gaochengxin | 来源:发表于2020-08-08 15:40 被阅读0次

整理移动的手势事件,注册成vue的指令

包含指令
 指令 事件名称    描述
 v-tap  点击事件
 v-swipe    滑动事件
 v-swipeleft    左滑事件
 v-swiperight   右滑事件
 v-swipedown    下滑事件
 v-swipeup  上滑事件
 v-longtap  长按事件

代码使用

main.js 引入
import './utils/Touch'

需要使用的地方

<template>
   <div>
     <!--使用方式如下-->
     <div v-swipeup="nextPage"
          v-swipedown="prevPage"></div>
   </div>
</template>
<script>
export default {
  methods: {
    // 前一页
    prevPage () {
      this.page--
    },
    // 后一页
    nextPage () {
      this.page++
    }
  }
}
</script>

核心代码

有点过度封装了,暂时这样后续精简和补充双指缩放等其他功能
  import Vue from 'vue'
  import TouchCls from './touch-cls'

 * 点击事件

Vue.directive('tap', {
  bind: function (el, binding) {
    const touch = new TouchCls(el, binding, 'tap')
    touch.initialize()
  }
})
 * 长按事件
  Vue.directive('swipe', {
  bind: function (el, binding) {
    const touch = new TouchCls(el, binding, 'swipe')
    touch.initialize()
  }
})
 * 左滑
Vue.directive('swipeleft', {
  bind: function (el, binding) {
    const touch = new TouchCls(el, binding, 'swipeleft')
    touch.initialize()
  }
})
 * 右滑
Vue.directive('swiperight', {
  bind: function (el, binding) {
    const touch = new TouchCls(el, binding, 'swiperight')
    touch.initialize()
  }
})
 * 下滑
Vue.directive('swipedown', {
  bind: function (el, binding) {
    const touch = new TouchCls(el, binding, 'swipedown')
    touch.initialize()
  }
})
 * 上滑
Vue.directive('swipeup', {
  bind: function (el, binding) {
    const touch = new TouchCls(el, binding, 'swipeup')
    touch.initialize()
  }
})
 * 长按事件
Vue.directive('longtap', {
  bind: function (el, binding) {
    const touch = new TouchCls(el, binding, 'longtap')
    touch.initialize()
  }
})

类文件

export default class VueTouch {
  constructor (el, binding, type) {
    this.obj = el
    this.binding = binding
    this.touchType = type
    this.vueTouches = {
      x: 0,
      y: 0
    }
    this.vueMoves = true
    this.vueLeave = true
    this.longTouch = true
    this.vueCallBack = typeof (binding.value) === 'object' ? binding.value.fn : binding.value
  }

  initialize () {
    const _this = this
    this.obj.addEventListener('touchstart', function (e) {
      _this.start(e)
    }, false)
    this.obj.addEventListener('touchend', function (e) {
  _this.end(e)
    }, false)
    this.obj.addEventListener('touchmove', function (e) {
      _this.move(e)
    }, false)
  }

  start (e) {
    this.vueMoves = true
    this.vueLeave = true
    this.longTouch = true
    this.vueTouches = {
      x: e.changedTouches[0].pageX,
      y: e.changedTouches[0].pageY
    }
    this.time = setTimeout(function () {
      if (this.vueLeave && this.vueMoves) {
        this.touchType === 'longtap' && this.vueCallBack(this.binding.value, e)
        this.longTouch = false
      };
    }.bind(this), 1000)
  }
  end (e) {
    var disX = e.changedTouches[0].pageX - this.vueTouches.x
    var disY = e.changedTouches[0].pageY - this.vueTouches.y
    clearTimeout(this.time)
    if (Math.abs(disX) > 10 || Math.abs(disY) > 100) {
      this.touchType === 'swipe' && this.vueCallBack(this.binding.value, e)
      if (Math.abs(disX) > Math.abs(disY)) {
        if (disX > 10) {
          this.touchType === 'swiperight' && this.vueCallBack(this.binding.value, e)
        };
        if (disX < -10) {
          this.touchType === 'swipeleft' && this.vueCallBack(this.binding.value, e)
        };
      } else {
        if (disY > 10) {
      this.touchType === 'swipedown' && this.vueCallBack(this.binding.value, e)
      };
        if (disY < -10) {
        this.touchType === 'swipeup' && this.vueCallBack(this.binding.value, e)
      };
    };
  } else {
    if (this.longTouch && this.vueMoves) {
      this.touchType === 'tap' && this.vueCallBack(this.binding.value, e)
      this.vueLeave = false
    };
  };
}
move (e) {
  this.vueMoves = false
}
}

// 作者:gaochengxin,
//采纳请点赞谢谢!

相关文章

  • Vue移动端手势事件

    整理移动的手势事件,注册成vue的指令 包含指令 代码使用 main.js 引入 需要使用的地方 核心代码 有点过...

  • Vue移动端手势事件封装

    整理移动的手势事件,注册成vue的指令 包含指令 代码使用 main.js 引入 需要使用的地方 核心代码 有点过...

  • fastclick.js解决移动端点击300ms延迟

    300ms延迟的来源 移动端有很多手势事件,如点击跳转,双击放大缩小页面,滑动等等。就是因为移动端需要判断手势类型...

  • vue 解决刷新页面时,tabbar和页面不匹配的问题

    vue tabbar 手势返回状态有误 开发移动端时,一般来说,tabbar在整个vue项目中都会单独取出来做成一...

  • flutter用户交互事件处理

    在移动端所谓的用户交互事件既是用户的手势操作处理。手势操作在flutter中可分为两类: 第一类是原始的指针事件(...

  • 前端常用插件

    touch.js--百度开发移动端手势库 isscroll--js模拟上拉加载下拉刷新 hammer--移动端手势...

  • vue移动端长按事件

    代码

  • Vue移动端触摸事件

    其实就是一个TouchEvent对象+上Vue的自定义事件,实现移动端的上滑、下滑、左滑、右滑,长按、点击 组件 ...

  • Vue移动端长按事件

    页面布局如下: 说明:因为这里是长按一张指纹图片,移动端长按图片会提示“保存图片”,虽然不影响跳转,但是会误导用户...

  • h5实现手势操作放大缩小拖动等

    最近开发遇到了这个需求,使用vue开发h5加一个手势放大缩小的功能,移动端的手势操作用原生的写法太麻烦,而且体验还...

网友评论

      本文标题:Vue移动端手势事件

      本文链接:https://www.haomeiwen.com/subject/obshdktx.html