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