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.
31 lines
725 B
31 lines
725 B
.motion-common() {
|
|
animation-duration: .24s;
|
|
animation-fill-mode: both;
|
|
display: block !important;
|
|
}
|
|
|
|
.make-motion(@className, @keyframeName) {
|
|
.@{className}-enter {
|
|
.motion-common();
|
|
animation-play-state: paused;
|
|
}
|
|
.@{className}-leave {
|
|
.motion-common();
|
|
animation-play-state: paused;
|
|
}
|
|
.@{className}-enter.@{className}-enter-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";
|
|
|