mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-19 02:20:35 +01:00
11 lines
No EOL
370 B
CSS
11 lines
No EOL
370 B
CSS
@keyframes lightSpeedIn {
|
|
0% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
|
60% { transform: translateX(-20%) skewX(30deg); opacity: 1; }
|
|
80% { transform: translateX(0%) skewX(-15deg); opacity: 1; }
|
|
100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
|
|
}
|
|
|
|
.lightSpeedIn {
|
|
animation-name: lightSpeedIn;
|
|
animation-timing-function: ease-out;
|
|
} |