mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-18 01:50:36 +01:00
17 lines
No EOL
240 B
CSS
17 lines
No EOL
240 B
CSS
@keyframes rotateOut {
|
|
0% {
|
|
transform-origin: center center;
|
|
transform: rotate(0);
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
transform-origin: center center;
|
|
transform: rotate(200deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.rotateOut {
|
|
animation-name: rotateOut;
|
|
} |