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