learn_nuxt/packages/4-TransitionsView/app.vue

21 lines
400 B
Vue
Raw Permalink Normal View History

2023-05-04 16:27:23 +08:00
<template>
<div>
<NuxtPage />
<NuxtLink to="/">index</NuxtLink>
<NuxtLink to="/about">about</NuxtLink>
</div>
</template>
<style>
/* You can customise the default animation here. */
::view-transition-old(root) {
animation: 90ms cubic-bezier(0.4, 0, 1, 1) both fade-out;
}
::view-transition-new(root) {
animation: 210ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in;
}
</style>