mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-13 07:41:08 +01:00
26 lines
366 B
CSS
26 lines
366 B
CSS
@keyframes lightSpeedIn {
|
|
from {
|
|
transform: translate3d(100%, 0, 0) skewX(-30deg);
|
|
opacity: 0;
|
|
}
|
|
|
|
60% {
|
|
transform: skewX(20deg);
|
|
opacity: 1;
|
|
}
|
|
|
|
80% {
|
|
transform: skewX(-5deg);
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
transform: none;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.lightSpeedIn {
|
|
animation-name: lightSpeedIn;
|
|
animation-timing-function: ease-out;
|
|
}
|