2015-07-01 17:25:16 +08:00
|
|
|
.swing-motion(@className, @keyframeName) {
|
2015-08-24 00:31:49 +08:00
|
|
|
.@{className}-enter, .@{className}-appear {
|
2015-07-01 17:25:16 +08:00
|
|
|
.motion-common();
|
|
|
|
animation-play-state: paused;
|
|
|
|
}
|
2015-08-24 00:31:49 +08:00
|
|
|
.@{className}-enter.@{className}-enter-active, .@{className}-appear.@{className}-appear-active {
|
2015-07-01 17:25:16 +08:00
|
|
|
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);
|
|
|
|
}
|
2015-08-24 00:31:49 +08:00
|
|
|
}
|