You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
860 B
37 lines
860 B
.motion-common() {
|
|
animation-duration: .2s;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
.motion-common-leave() {
|
|
animation-duration: .2s;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
.make-motion(@className, @keyframeName) {
|
|
.@{className}-enter,
|
|
.@{className}-appear {
|
|
.motion-common();
|
|
animation-play-state: paused;
|
|
}
|
|
.@{className}-leave {
|
|
.motion-common-leave();
|
|
animation-play-state: paused;
|
|
}
|
|
.@{className}-enter.@{className}-enter-active,
|
|
.@{className}-appear.@{className}-appear-active {
|
|
animation-name: ~"@{keyframeName}In";
|
|
animation-play-state: running;
|
|
}
|
|
.@{className}-leave.@{className}-leave-active {
|
|
animation-name: ~"@{keyframeName}Out";
|
|
animation-play-state: running;
|
|
}
|
|
}
|
|
|
|
@import "motion/fade";
|
|
@import "motion/move";
|
|
@import "motion/other";
|
|
@import "motion/slide";
|
|
@import "motion/swing";
|
|
@import "motion/zoom";
|
|
|