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~~

相关推荐
yiyiy111yiy8 分钟前
关于Harmony的学习
前端·javascript·学习·原型模式
DYS_0000122 分钟前
哨兵机制Sentinel
linux·运维·前端·redis·缓存
小春学渗透31 分钟前
DAY14信息打点-JS 架构&框架识别&泄漏提取&API 接口枚举&FUZZ 爬虫&插件项目
开发语言·javascript·爬虫·网络协议·网络安全
时光匆匆岁月荏苒,转眼我们已不是当年42 分钟前
【前端echarts】echarts双饼图与easyui列表联动
前端·echarts·easyui
lv1级小菜鸟1 小时前
【网络安全】-rce漏洞-pikachu
前端·安全·web安全
自己给自己创造机会1 小时前
css 实现一个卡片
前端·javascript·css
灰啦啦1 小时前
HTML的块级元素与行内元素
前端·html
让开,我要吃人了1 小时前
HarmonyOS开发实战( Beta5.0)蓝牙实现服务端和客户端通讯详解
开发语言·前端·华为·移动开发·harmonyos·鸿蒙·鸿蒙系统
喵果森森1 小时前
JavaScript控制语句和函数的使用
前端·javascript
秋沐1 小时前
Vue3实现打印功能
前端·javascript·vue.js