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