Bounce Out Animation Effect
Run
HTML
Bounce Out
CSS
.circle { width: 100px; height: 100px; background: #ad132a; border-radius: 50%; } .bounceOut { animation-name: bounceOut; animation-duration: .75s; animation-iteration-count: infinite; animation-delay: 1s; animation-fill-mode: both; } @keyframes bounceOut { 20% { transform: scale3d(.9, .9, .9); } 50%, 55% { transform: scale3d(1.1, 1.1, 1.1); opacity: 1; } 100% { transform: scale3d(.3, .3, .3); opacity: 0; } }
Copyright © 2024 KodeKite