animate.css/source/rotating_entrances/rotateInUpRight.css
Sarbbottam Bandyopadhyay 9310cf98ed Unified formatting across files
indent_style = space
indent_size = 2
insert_final_newline = true
each line within { } to specify single rule
2014-02-24 02:09:02 +05:30

18 lines
257 B
CSS

@keyframes rotateInUpRight {
0% {
transform-origin: right bottom;
transform: rotate(-90deg);
opacity: 0;
}
100% {
transform-origin: right bottom;
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpRight {
animation-name: rotateInUpRight;
}