mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 17:45:17 +01:00
0bc05a7559
and fixed typo in the previous commit at source/attention_seekers/swing.css
16 lines
267 B
CSS
16 lines
267 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;
|
|
}
|