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

Vue.js实现微信过渡动画左右切换效果

程序员文章站 2022-03-21 15:15:53
前言 在上寻找移动端框架的时候意外发现了的页面切换效果,后面由于其他考虑没有选用vuex但是这个切换效果确实感觉很有新意,也就看了下源码,这里贴一份备用。 需要用到的技...

前言

在上寻找移动端框架的时候意外发现了的页面切换效果,后面由于其他考虑没有选用vuex但是这个切换效果确实感觉很有新意,也就看了下源码,这里贴一份备用。

需要用到的技术栈:vue+vuex

先看看效果图

Vue.js实现微信过渡动画左右切换效果
过渡动画

示例代码

//app.vue
<transition :name="'vux-pop-' + (direction === 'forward' ? 'in' : 'out')">
 <keep-alive>
 <router-view class="router-view" ></router-view>
 </keep-alive>
</transition>
<script>
 import { mapstate } from 'vuex'
 import sidefooter from "./components/footer.vue"

 export default {
 name: 'app',
 data () {
 return {
 showfooter : false
 }
 },
 components : {
 sidefooter
 },
 computed:{
 ...mapstate({
 direction: state => state.mutations.direction
 })
 },
 }
</script>

<style scoped>
 .vux-pop-out-enter-active,
 .vux-pop-out-leave-active,
 .vux-pop-in-enter-active,
 .vux-pop-in-leave-active {
 will-change: transform;
 transition: all 250ms;
 height: 100%;
 top: 0;
 position: absolute;
 backface-visibility: hidden;
 perspective: 1000;
 }

 .vux-pop-out-enter {
 opacity: 0;
 transform: translate3d(-100%, 0, 0);
 }

 .vux-pop-out-leave-active {
 opacity: 0;
 transform: translate3d(100%, 0, 0);
 }

 .vux-pop-in-enter {
 opacity: 0;
 transform: translate3d(100%, 0, 0);
 }

 .vux-pop-in-leave-active {
 opacity: 0;
 transform: translate3d(-100%, 0, 0);
 }
</style>
// main.js
const history = window.sessionstorage;
history.clear()
let historycount = history.getitem('count') * 1 || 0;
history.setitem('/', 0);

router.beforeeach(function (to, from, next) {

 const toindex = history.getitem(to.path);
 const fromindex = history.getitem(from.path);

 if (toindex) {
 if (!fromindex || parseint(toindex, 10) > parseint(fromindex, 10) || (toindex === '0' && fromindex === '0')) {
 store.commit('update_direction', {direction: 'forward'})
 } else {
 store.commit('update_direction', {direction: 'reverse'})
 }
 } else {
 ++historycount;
 history.setitem('count', historycount);
 to.path !== '/' && history.setitem(to.path, historycount);
 store.commit('update_direction', {direction: 'forward'})
 }
 next()
});

这里还用到了vuex,但是我stroe写了很多就不提出来了,主要就是通过 update_direction方法更新每一次的路由方向是前进还是后退。

man.js里面主要思想就是给路由增加一个索引存到sessionstorage里面,以点击过的索引值不变,新增加的路由,索引增加1,同时count+1,这样在页面切换时通过比较索引值的大小,大的向右小的向左,做到左右有规律的过渡。

好了至此一个左右切换的过渡效果就成了,最近由于一直在开发也没怎么更新文章,如果有朋友有好的想法欢迎与我交流。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如有疑问大家可以留言交流,谢谢大家对的支持。