209 lines
4.4 KiB
CSS
209 lines
4.4 KiB
CSS
.slide-up-enter,
|
|
.slide-up-appear {
|
|
animation-duration: .2s;
|
|
animation-fill-mode: both;
|
|
animation-play-state: paused;
|
|
}
|
|
.slide-up-leave {
|
|
animation-duration: .2s;
|
|
animation-fill-mode: both;
|
|
animation-play-state: paused;
|
|
}
|
|
.slide-up-enter.slide-up-enter-active,
|
|
.slide-up-appear.slide-up-appear-active {
|
|
animation-name: antSlideUpIn;
|
|
animation-play-state: running;
|
|
}
|
|
.slide-up-leave.slide-up-leave-active {
|
|
animation-name: antSlideUpOut;
|
|
animation-play-state: running;
|
|
}
|
|
.slide-up-enter,
|
|
.slide-up-appear {
|
|
opacity: 0;
|
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
}
|
|
.slide-up-leave {
|
|
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
}
|
|
.slide-down-enter,
|
|
.slide-down-appear {
|
|
animation-duration: .2s;
|
|
animation-fill-mode: both;
|
|
animation-play-state: paused;
|
|
}
|
|
.slide-down-leave {
|
|
animation-duration: .2s;
|
|
animation-fill-mode: both;
|
|
animation-play-state: paused;
|
|
}
|
|
.slide-down-enter.slide-down-enter-active,
|
|
.slide-down-appear.slide-down-appear-active {
|
|
animation-name: antSlideDownIn;
|
|
animation-play-state: running;
|
|
}
|
|
.slide-down-leave.slide-down-leave-active {
|
|
animation-name: antSlideDownOut;
|
|
animation-play-state: running;
|
|
}
|
|
.slide-down-enter,
|
|
.slide-down-appear {
|
|
opacity: 0;
|
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
}
|
|
.slide-down-leave {
|
|
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
}
|
|
.slide-left-enter,
|
|
.slide-left-appear {
|
|
animation-duration: .2s;
|
|
animation-fill-mode: both;
|
|
animation-play-state: paused;
|
|
}
|
|
.slide-left-leave {
|
|
animation-duration: .2s;
|
|
animation-fill-mode: both;
|
|
animation-play-state: paused;
|
|
}
|
|
.slide-left-enter.slide-left-enter-active,
|
|
.slide-left-appear.slide-left-appear-active {
|
|
animation-name: antSlideLeftIn;
|
|
animation-play-state: running;
|
|
}
|
|
.slide-left-leave.slide-left-leave-active {
|
|
animation-name: antSlideLeftOut;
|
|
animation-play-state: running;
|
|
}
|
|
.slide-left-enter,
|
|
.slide-left-appear {
|
|
opacity: 0;
|
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
}
|
|
.slide-left-leave {
|
|
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
}
|
|
.slide-right-enter,
|
|
.slide-right-appear {
|
|
animation-duration: .2s;
|
|
animation-fill-mode: both;
|
|
animation-play-state: paused;
|
|
}
|
|
.slide-right-leave {
|
|
animation-duration: .2s;
|
|
animation-fill-mode: both;
|
|
animation-play-state: paused;
|
|
}
|
|
.slide-right-enter.slide-right-enter-active,
|
|
.slide-right-appear.slide-right-appear-active {
|
|
animation-name: antSlideRightIn;
|
|
animation-play-state: running;
|
|
}
|
|
.slide-right-leave.slide-right-leave-active {
|
|
animation-name: antSlideRightOut;
|
|
animation-play-state: running;
|
|
}
|
|
.slide-right-enter,
|
|
.slide-right-appear {
|
|
opacity: 0;
|
|
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
|
|
}
|
|
.slide-right-leave {
|
|
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
}
|
|
@keyframes antSlideUpIn {
|
|
0% {
|
|
opacity: 0;
|
|
transform-origin: 0% 0%;
|
|
transform: scaleY(0.8);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform-origin: 0% 0%;
|
|
transform: scaleY(1);
|
|
}
|
|
}
|
|
@keyframes antSlideUpOut {
|
|
0% {
|
|
opacity: 1;
|
|
transform-origin: 0% 0%;
|
|
transform: scaleY(1);
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
transform-origin: 0% 0%;
|
|
transform: scaleY(0.8);
|
|
}
|
|
}
|
|
@keyframes antSlideDownIn {
|
|
0% {
|
|
opacity: 0;
|
|
transform-origin: 100% 100%;
|
|
transform: scaleY(0.8);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform-origin: 100% 100%;
|
|
transform: scaleY(1);
|
|
}
|
|
}
|
|
@keyframes antSlideDownOut {
|
|
0% {
|
|
opacity: 1;
|
|
transform-origin: 100% 100%;
|
|
transform: scaleY(1);
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
transform-origin: 100% 100%;
|
|
transform: scaleY(0.8);
|
|
}
|
|
}
|
|
@keyframes antSlideLeftIn {
|
|
0% {
|
|
opacity: 0;
|
|
transform-origin: 0% 0%;
|
|
transform: scaleX(0.8);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform-origin: 0% 0%;
|
|
transform: scaleX(1);
|
|
}
|
|
}
|
|
@keyframes antSlideLeftOut {
|
|
0% {
|
|
opacity: 1;
|
|
transform-origin: 0% 0%;
|
|
transform: scaleX(1);
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
transform-origin: 0% 0%;
|
|
transform: scaleX(0.8);
|
|
}
|
|
}
|
|
@keyframes antSlideRightIn {
|
|
0% {
|
|
opacity: 0;
|
|
transform-origin: 100% 0%;
|
|
transform: scaleX(0.8);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform-origin: 100% 0%;
|
|
transform: scaleX(1);
|
|
}
|
|
}
|
|
@keyframes antSlideRightOut {
|
|
0% {
|
|
opacity: 1;
|
|
transform-origin: 100% 0%;
|
|
transform: scaleX(1);
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
transform-origin: 100% 0%;
|
|
transform: scaleX(0.8);
|
|
}
|
|
}
|