ant-design/style/core/motion/fade.less

32 lines
493 B
Plaintext
Raw Normal View History

.fade-motion(@className, @keyframeName) {
.make-motion(@className, @keyframeName);
.@{className}-enter, .@{className}-appear {
opacity: 0;
animation-timing-function: linear;
}
.@{className}-leave {
animation-timing-function: linear;
}
2015-07-01 17:25:16 +08:00
}
.fade-motion(fade, antFade);
.fade-motion(ant-modal-fade, antFade);
2015-07-01 17:25:16 +08:00
2015-09-15 15:00:23 +08:00
@keyframes antFadeIn {
2015-07-01 17:25:16 +08:00
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
2015-09-15 15:00:23 +08:00
@keyframes antFadeOut {
2015-07-01 17:25:16 +08:00
0% {
opacity: 1;
}
100% {
opacity: 0;
}
2015-07-09 11:04:45 +08:00
}