vue实现app页面切换动画效果实例

因为需要实现类似APP页面切换的动画效果,百度google搜索比较少资料,所以自己写文档,希望对您有用

vue实现app页面切换动画效果实例


在router/index.js

import Vue from 'vue' import Router from 'vue-router' Vue.use(Router) Router.prototype.goBack = function () { this.isBack = true window.history.go(-1) } const router = new Router({ routes: [ { path: 'https://www.jb51.net/', name: 'PageTransition', component: PageTransition, // 引入页面切换组件 children: [{ path: '', component: Index // 父路由访问页面,例如,访问 显示的是Index组件 }, { path: '/pageA', component: PageA // 子路由组件 例如,访问 显示为PageA }, { path: '/pageB', component: PageB // 子路由组件 例如,访问 显示为PageB }] } ] })

监听路由变化

在放置 <router-view>的vue文件中

//templete <transition keep-alive> <router-view></router-view> </transition> //script beforeRouteUpdate(to,from,next){ let isBack = this.$router.isBack; if( isBack ){ this.transitionName = 'slide-right' }else{ this.transitionName = 'slide-left' } this.$router.isBack = false; } //style .slide-left-enter, .slide-right-leave-active { opacity: 0; -webkit-transform: translate(50px, 0); transform: translate(50px, 0); } .slide-left-leave-active, .slide-right-enter { opacity: 0; -webkit-transform: translate(-50px, 0); transform: translate(-50px, 0); }

在需要点击返回的按钮中设置 goback

<div @click="goback"><</div> methods: { goback () { this.$router.goBack() } }

我自己的github地址 https://github.com/Jaction/page-app-Ainimate

大牛的github地址https://github.com/zhengguorong/pageAinimate

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyszwg.html