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.
32 lines
495 B
32 lines
495 B
.fade-motion(@className, @keyframeName) {
|
|
.make-motion(@className, @keyframeName);
|
|
.@{className}-enter,
|
|
.@{className}-appear {
|
|
opacity: 0;
|
|
animation-timing-function: linear;
|
|
}
|
|
.@{className}-leave {
|
|
animation-timing-function: linear;
|
|
}
|
|
}
|
|
|
|
.fade-motion(fade, antFade);
|
|
.fade-motion(ant-modal-fade, antFade);
|
|
|
|
@keyframes antFadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes antFadeOut {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|