Rotate Out Animation Effect
Run
HTML
Rotate Out
CSS
.circle { width: 100px; height: 100px; background: #ad132a; border-radius: 50%; } .rotateOut { animation-name: rotateOut; animation-duration: 1s; animation-iteration-count: infinite; animation-delay: 1s; animation-fill-mode: both; } @keyframes rotateOut { 0% { transform-origin: center; opacity: 1; } 100% { transform-origin: center; transform: rotate3d(0, 0, 1, 200deg); opacity: 0; } }
Follow Us