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