anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
27 lines (24 loc) • 541 B
CSS
/*
*@name rotateDownRight
*@className rotateDownRight animated
*@cssCode
*@editionLink codepen.io
*@author Quinn Keaveney
*@source AniCollection
*@sourceUrl https://github.com/anicollection/anicollection
*@issues https://github.com/anicollection/anicollection/issues
*@license MIT
*/
@keyframes rotateDownRight {
0% {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 45deg);
}
100% {
transform-origin: right bottom;
transform: none;
}
}
.rotateDownRight {
animation-name: rotateDownRight;
}