mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-18 01:50:36 +01:00
10 lines
No EOL
248 B
CSS
10 lines
No EOL
248 B
CSS
@keyframes lightSpeedOut {
|
|
0% { transform: translateX(0%) skewX(0deg); opacity: 1; }
|
|
100% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
|
|
}
|
|
|
|
.lightSpeedOut {
|
|
animation-name: lightSpeedOut;
|
|
|
|
animation-timing-function: ease-in;
|
|
} |