animate.css/source/zooming_entrances/zoomInRight.css
2014-04-22 09:38:20 -07:00

17 lines
309 B
CSS

@keyframes zoomInRight {
0% {
opacity: 0;
transform: scale(.1) translateX(2000px);
animation-timing-function: ease-in-out;
}
60% {
opacity: 1;
transform: scale(.475) translateX(-48px);
animation-timing-function: ease-out;
}
}
.zoomInRight {
animation-name: zoomInRight;
}