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.
34 lines
626 B
34 lines
626 B
10 years ago
|
.swing-motion(@className, @keyframeName) {
|
||
9 years ago
|
.@{className}-enter,
|
||
|
.@{className}-appear {
|
||
10 years ago
|
.motion-common();
|
||
|
animation-play-state: paused;
|
||
|
}
|
||
9 years ago
|
.@{className}-enter.@{className}-enter-active,
|
||
|
.@{className}-appear.@{className}-appear-active {
|
||
10 years ago
|
animation-name: ~"@{keyframeName}In";
|
||
|
animation-play-state: running;
|
||
|
}
|
||
|
}
|
||
|
|
||
9 years ago
|
.swing-motion(swing, antSwing);
|
||
10 years ago
|
|
||
9 years ago
|
@keyframes antSwingIn {
|
||
9 years ago
|
0%,
|
||
|
100% {
|
||
10 years ago
|
transform: translateX(0px);
|
||
|
}
|
||
|
20% {
|
||
|
transform: translateX(-10px);
|
||
|
}
|
||
|
40% {
|
||
|
transform: translateX(10px);
|
||
|
}
|
||
|
60% {
|
||
|
transform: translateX(-5px);
|
||
|
}
|
||
|
80% {
|
||
|
transform: translateX(5px);
|
||
|
}
|
||
9 years ago
|
}
|