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