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

16 lines
210 B
CSS

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