vue-page-transition icon indicating copy to clipboard operation
vue-page-transition copied to clipboard

opetions to change duration?

Open martea opened this issue 4 years ago • 1 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.

martea avatar Oct 02 '19 10:10 martea

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;
}

rajkumar1206 avatar Aug 05 '21 04:08 rajkumar1206