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