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