vue-router-md-transition
The MaterialDesignTransition.vue SFC(Single File Component) wraps Vue's built-in <transition>
component with additional CSS styles to achieve Material Design transition effect.
Usage
Install
Direct Download / CDN
Include the UMD build after vue
and vue-router
, the component will be registered automatically:
? This package is available on bundle.run, unpkg and jsdelivr.
ES module
Install via npm:
Import into your application:
Register the component:
or
Customize:
Transition direction
Disable transition
You can dynamically control the transition by watching router's behavior. For example:
Transition speed
Use CSS variable to override the default (250ms) animation duration:
The fading layer
The fading effect is achieved by adding an additional layer between the current view element and the upcoming view element. This fading layer is just the ::after
psuedo element of the element of current view (or previous view in reversed direction), with its background
set to the same with the element container's background and gradually increasing its opacity
from 0
to 1
. This creates a visual effect of fading.
Change fading layer background
To get the best result, the the fading layer's background should match the background of the element's container.
Use CSS variable to override the default background:
If your app is in dark mode you may want the fading background to be dark:
Change fading layer offset top
By default, during transition there will be an offset top for the fading layer in order to not overlap with the Material Design top app bar. This can also be overriden by CSS variables:
You can use .md-no-app-bar
to quickly disable the offset top if your page is not using the app bar:
Or use .md-app-bar-extended
to set it to 128px
if you're using an extended top app bar:
Beyond Vue Router
By default, the <md-transition></md-transition>
will treat the element inside as a full width (block-level) element. This should be fine under most circumstances as the <router-view></router-view>
is usually a full width element. But you can add the .md-auto-width
class to disable this feature in case you don't use a full width router view:
In fact, with .md-auto-width
applied, you can not only use this package for Vue Router, but also any arbitrary transitions supported by Vue:
If you want more customizations, simply take the src/components/MaterialDesignTransition.vue
, tweak it and use it just as any normal Vue SFC the way you like. Or you can submit a pull request to help me make it better.