Zoom Out Animation Effect
Run
HTML
Zoom Out
CSS
.circle { width: 100px; height: 100px; background: #ad132a; border-radius: 50%; } .zoomOut { animation-name: zoomOut; animation-duration: 1s; animation-iteration-count: infinite; animation-delay: 1s; animation-fill-mode: both; } @keyframes zoomOut { 0% { opacity: 1; } 50% { transform: scale3d(.3, .3, .3); opacity: 0; } 100% { opacity: 0; } }
Follow Us