animate.css/source/fading_entrances/fadeInRightBig.css
Elton Mesquita 3b3cfc1ba0 Solves #461
2018-01-25 14:03:02 -03:00

16 lines
221 B
CSS

@keyframes fadeInRightBig {
from {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
.fadeInRightBig {
animation-name: fadeInRightBig;
}