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

16 lines
212 B
CSS

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