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