anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
27 lines (24 loc) • 487 B
CSS
/*
*@name rotate
*@className rotate 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 rotate {
0% {
transform-origin: center;
transform: rotate3d(0, 0, 1, -200deg);
}
100% {
transform-origin: center;
transform: none;
}
}
.rotate {
animation-name: rotate;
}