Light Speed Out Animation Effect
Run
HTML
Light Speed Out
CSS
.circle { width: 100px; height: 100px; background: #ad132a; border-radius: 50%; } .lightSpeedOut { animation-name: lightSpeedOut; animation-timing-function: ease-in; animation-duration: 1s; animation-iteration-count: infinite; animation-delay: 1s; animation-fill-mode: both; } @keyframes lightSpeedOut { 0% { opacity: 1; } 100% { transform: translate3d(100%, 0, 0) skewX(30deg); opacity: 0; } }
Follow Us