Zoom Out Right Animation Effect
Run
HTML
Zoom Out Right
CSS
.circle { width: 100px; height: 100px; background: #ad132a; border-radius: 50%; } .zoomOutRight { animation-name: zoomOutRight; animation-duration: 1s; animation-iteration-count: infinite; animation-delay: 1s; animation-fill-mode: both; } @keyframes zoomOutRight { 40% { transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); opacity: 1; } 100% { transform-origin: right center; transform: scale(.1) translate3d(2000px, 0, 0); opacity: 0; } }
Follow Us