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

16 lines
201 B
CSS

@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
.fadeInUp {
animation-name: fadeInUp;
}