文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么使用vue-router实现手势滑动触发返回功能

2023-07-04 14:03

关注

这篇“怎么使用vue-router实现手势滑动触发返回功能”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“怎么使用vue-router实现手势滑动触发返回功能”文章吧。

vue-router的路由变换只存在“变换前”和“变换后”,不存在“切换中”的状态,所以做不到大多数app(微信那样的)在滑动过程中让界面跟随手指移动。但滑动事件还是可以监听的,我们可以在滑动之后再触发路由回退事件。

  微博的滑动返回基本上就是这样的原理:先滑动、再触发返回事件,但用起来很是怪异,有严重的滞后感。夸克浏览器做的就比较好:一是滑动时界面虽然不动,但是界面上有小图标提示,能让用户接受到反馈;二是返回过程很快,没有多余的过渡动画。

  app.vue文件如下:

<template> <div id="app" v-on:touchstart="bodyTouchStart" v-on:touchmove="bodyTouchMove" v-on:touchend="bodyTouchEnd"> <transition :name="direction">  <keep-alive include="home">  <router-view class="appView"></router-view>  </keep-alive> </transition> </div></template><script>var swidth = document.documentElement.clientWidth;export default { name: 'app', data: () => ({ // direction 页面切换的过渡动画,配合transition组件使用 direction: "slide-left", // touchLeft 划动起点界限,起点在靠近屏幕左侧时才有效 touchLeft: swidth*2/5, // touchStartPoint 记录起始点X坐标 touchStartPoint: 0, // distance 记录划动的距离 distance: 0, // 回退按钮的dom,根据页面上是否存在此dom来判断该路由是否可回退 backBtn: null }), watch: { // 监听路有变化,决定页面过渡动画 $route(to, from) {  if (from.name == "login" || from.path.indexOf("home") > -1) {  this.direction = "slide-left";  } else if (to.path.indexOf("home") > -1) {  this.direction = "slide-right";  } else {  const toDepth = to.path.split("/").length;  const fromDepth = from.path.split("/").length;  this.direction = toDepth < fromDepth ? "slide-right" : "slide-left";  } } }, methods: { bodyTouchStart: function(event) {  this.backBtn = document.getElementById("navback");  if (this.backBtn) {  // 获得起点X坐标,初始化distance为0  this.touchStartPoint = event.targetTouches[0].pageX;  this.distance = 0;  } }, bodyTouchMove: function(event) {  if (this.backBtn && this.touchStartPoint < this.touchLeft) {  // 只监听单指划动,多指划动不作响应  if (event.targetTouches.length > 1) {   return;  }  // 实时计算distance  this.distance = event.targetTouches[0].pageX - this.touchStartPoint;  // 根据distance在页面上做出反馈。这里演示通过返回按钮的背景变化作出反馈  if (this.distance > 0 && this.distance < 100) {   this.backBtn.style.backgroundPosition = ((this.distance - 100) / 100) * 50 + "px 0";  } else if (this.distance >= 100) {   this.backBtn.style.backgroundPosition = "0 0";  } else {   this.backBtn.style.backgroundPosition = "-50px 0";  }  } }, bodyTouchEnd: function(event) {  if (this.backBtn && this.touchStartPoint < this.touchLeft) {  // 划动结束,重置数据  this.touchStartPoint = 0;  this.backBtn.style.backgroundPosition = "-50px 0";  // 当划动距离超过100px时,触发返回事件  if (this.distance > 100) {   // 返回前修改样式,让过渡动画看起来更快   document.getElementById("app").classList.add("quickback");   this.$router.back();   setTimeout(function(){   document.getElementById("app").classList.remove("quickback");   },250)  }  } } }}</script><style>#app { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; width: 100%; overflow-x: hidden;}.appView { position: absolute; width: 100%; background: #fff; min-height: 100vh; transition: transform 0.24s ease-out;}#app.quickback .appView{ transition-duration: 0.1s;}.slide-left-enter { transform: translate(100%, 0);}.slide-left-leave-active { transform: translate(-50%, 0);}.slide-right-enter { transform: translate(-50%, 0);}.slide-right-leave-active { transform: translate(100%, 0);}</style>

下面看下vue图片左右滑动及手势缩放

引入vue-awesome-swiperimport 'swiper/dist/css/swiper.css';

import { swiper, swiperSlide } from 'vue-awesome-swiper';components: { swiper, swiperSlide,},data() { return { swiperOption: {  width: window.innerWidth,  zoom : true,  initialSlide: 0, }, };},<swiper :options="swiperOption" ref="imgOverview" > <swiper-slide v-for="(img, index) in previewImg"> <div class="swiper-zoom-container">  <img :src="img" alt=""> </div> </swiper-slide></swiper>

vue是什么

Vue是一套用于构建用户界面的渐进式JavaScript框架,Vue与其它大型框架的区别是,使用Vue可以自底向上逐层应用,其核心库只关注视图层,方便与第三方库和项目整合,且使用Vue可以采用单文件组件和Vue生态系统支持的库开发复杂的单页应用。

以上就是关于“怎么使用vue-router实现手势滑动触发返回功能”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯