animate.css/source/lightspeed/lightSpeedIn.css
Sarbbottam Bandyopadhyay 0bc05a7559 converted all the tabs into spaces
and fixed typo in the previous commit
at source/attention_seekers/swing.css
2014-02-24 03:26:08 +05:30

27 lines
414 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;
}