vue router 切换路由的时候,页面的动画效果,使页面切换好看,以及控制有的页面使用切换路由特效,有的页面不用

一、使用切换效果

在router文件中 useTransition: true代表需要动画

meta: {

title: "新开卡预填表单",

keepAlive: true,
useTransition: true

},

javascript 复制代码
[
	{
		path: "/",
		name: "Home",
		meta: {
			title: "首页",
			keepAlive: true,
			useTransition: false
		},
		component: () => import("@/views/home.vue")
	},
	{
		path: "/clientPortrait",
		name: "clientPortrait",
		meta: {
			title: "画像",
			keepAlive: true,
			useTransition: true
		},
		component: () => import("@/views/clientPortrait/clientPortrait.vue")
	},
	{
		path: "/sendCardInputForm",
		name: "sendCardInputForm",
		meta: {
			title: "预填表单",
			keepAlive: true,
			useTransition: true
		},
		component: () => import("@/views/sendCard/inputForm.vue")
	},

在app.vue文件

//路由守卫

router.beforeEach方法,获取来自和去往的路由

useTransition来代表是否需要动画,获取to页面的路由状态,来判断useTransition为true还是false;

from为true to也为true 的时候,切换页面有特效,所以需要设置延时的true,以保证切走的时候有特效,这是下方代码的意义
setTimeout(() => {
// 离开sendCardInputForm,transferAccountsInputForm 需要动画
useTransition.value = true;
}, 1000);

javascript 复制代码
	<!-- <RouterView></RouterView> -->
	<RouterView v-if="!useTransition"></RouterView>
	<RouterView v-if="useTransition" v-slot="{ Component }">
		<transition name="slide" mode="out-in">
			<component :is="Component" />
		</transition>
	</RouterView>
javascript 复制代码
import { useRoute, useRouter } from "vue-router";
import { ref } from "vue";
const route = useRoute();
const router = useRouter();
let routes = router.getRoutes();
// 页面切换是否需要动画
let useTransition = ref(false);

useTransition.value = route.meta && route.meta.useTransition ? true : false;

//路由守卫
router.beforeEach((to, from, next) => {
	if (
		to.name === "Home" &&
		(from.name === "sendCardInputForm" || from.name === "transferAccountsInputForm")
	) {
		// sendCardInputForm,transferAccountsInputForm 返回首页不需要动画
		useTransition.value = false;
	} else if (to.name === "Home" && from.name === "clientPortrait") {
		// 画像返回首页需要动画
		useTransition.value = true;
	} else if (to.name === "sendCardInputForm" || to.name === "transferAccountsInputForm") {
		// 进入sendCardInputForm,transferAccountsInputForm 不需要动画
		useTransition.value = false;
		setTimeout(() => {
			// 离开sendCardInputForm,transferAccountsInputForm 需要动画
			useTransition.value = true;
		}, 1000);
	} else {
		//除了以上特别的路由,其他的按照router文件里配置的来决定需要不需要动画效果
		useTransition.value = to.meta && to.meta.useTransition ? true : false;
	}
	next();
});

transition name="slide" mode="out-in" slide的动画的css,滑入滑出,标签里 out-in先出后入

css 复制代码
.slide-enter-active,
.slide-leave-active {
	transition: all 0.75s ease-out;
}

.slide-enter-to {
	position: absolute;
	left: 0;
}

.slide-enter-from {
	position: absolute;
	left: -100%;
}

.slide-leave-to {
	position: absolute;
	right: -100%;
}

.slide-leave-from {
	position: absolute;
	right: 0;
}

不知道为什么,这个动画在pc端是平移的out in

在移动端out时候会向右上角缩小,平移的in

有大佬懂得可以赐教

页面动画就是这样了,bye~~

相关推荐
烬头88217 分钟前
React Native鸿蒙跨平台采用了函数式组件的形式,通过 props 接收分类数据,使用 TouchableOpacity实现了点击交互效果
javascript·react native·react.js·ecmascript·交互·harmonyos
Amumu121387 分钟前
Vuex介绍
前端·javascript·vue.js
We་ct8 分钟前
LeetCode 54. 螺旋矩阵:两种解法吃透顺时针遍历逻辑
前端·算法·leetcode·矩阵·typescript
2601_9498095920 分钟前
flutter_for_openharmony家庭相册app实战+相册详情实现
javascript·flutter·ajax
qq_1777673724 分钟前
React Native鸿蒙跨平台通过Animated.Value.interpolate实现滚动距离到动画属性的映射
javascript·react native·react.js·harmonyos
2601_9498333933 分钟前
flutter_for_openharmony口腔护理app实战+饮食记录实现
android·javascript·flutter
2601_9494800642 分钟前
【无标题】
开发语言·前端·javascript
css趣多多1 小时前
Vue过滤器
前端·javascript·vue.js
理人综艺好会1 小时前
Web学习之用户认证
前端·学习
●VON1 小时前
React Native for OpenHarmony:项目目录结构与跨平台构建流程详解
javascript·学习·react native·react.js·架构·跨平台·von