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