vueplus-ui
Version:
A high quality UI components Library with Vue.js
30 lines (27 loc) • 518 B
text/less
.fade-motion(@className, @keyframeName) {
.make-motion(@className, @keyframeName);
.@{className}-enter-active, .@{className}-appear {
opacity: 0;
animation-timing-function: linear;
}
.@{className}-leave-active {
animation-timing-function: linear;
}
}
.fade-motion(fade, vpFade);
@keyframes vpFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes vpFadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}