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