mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
31 lines
766 B
Plaintext
31 lines
766 B
Plaintext
.motion-common() {
|
|
animation-duration: .3s;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
.make-motion(@className, @keyframeName) {
|
|
.@{className}-enter, .@{className}-appear {
|
|
.motion-common();
|
|
animation-play-state: paused;
|
|
}
|
|
.@{className}-leave {
|
|
.motion-common();
|
|
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";
|