Orlandster / vue-page-transition

A lightweight Vue.js plugin for page / route transitions.

Home Page:https://orlandster.github.io/vue-page-transition

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

opetions to change duration?

martea opened this issue · comments

Maybe add _variables scss files that you can override? to change the defaults of the duration, maybe postcss? to solve it? but the feature would be nice.

you can edit in css of vue

.fade-in-up-enter-to {                /* in your case, to which transition you are using */
  animation-duration: .2s!important;
}
.fade-enter-active,
.fade-leave-active {                 /* in your case, to which transition you are using */
  transition-duration: 0.2s!important;
}