CSS - Light Speed In Effect



Description

It is going to provide the lighting speed to element.

Syntax

@keyframes lightSpeedIn {
   0% { 
      transform: translateX(100%) skewX(-30deg); 
      opacity: 0; 
   } 
   60% { 
      transform: translateX(-20%) skewX(30deg); 
      opacity: 1; 
   } 
   80% { 
      transform: translateX(0%) skewX(-15deg); 
      opacity: 1; 
   } 
   100% { 
      transform: translateX(0%) skewX(0deg); 
      opacity: 1; 
   } 
} 

Parameters

  • Transform − Transform applies to 2d and 3d transformation to an element.

  • Opacity − Opacity applies to an element to make translucence.

Example

<html>

<head>
    <style>
        .lsiAnimated {
            background-image: url(/https/www.tutorialspoint.com/html/images/test.png);
            background-repeat: no-repeat;
            background-position: left top;
            padding-top: 95px;
            margin-bottom: 60px;
            -webkit-animation-duration: 0.8s;
            animation-duration: 0.8s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
        }


        @-webkit-keyframes lightSpeedIn {
            0% {
                -webkit-transform: translateX(90%) skewX(-30deg);
                opacity: 0;
            }

            60% {
                -webkit-transform: translateX(0%) skewX(30deg);
                opacity: 1;
            }

            80% {
                -webkit-transform: translateX(5%) skewX(-15deg);
                opacity: 1;
            }

            100% {
                -webkit-transform: translateX(5%) skewX(0deg);
                opacity: 1;
            }
        }

        @keyframes lightSpeedIn {
            0% {
                -webkit-transform: translateX(70%) skewX(-30deg);
                opacity: 0;
            }

            60% {
                -webkit-transform: translateX(0%) skewX(30deg);
                opacity: 1;
            }

            80% {
                -webkit-transform: translateX(5%) skewX(-15deg);
                opacity: 1;
            }

            100% {
                -webkit-transform: translateX(5%) skewX(0deg);
                opacity: 1;
            }
        }

        .lightSpeedIn {
            -webkit-animation-name: lightSpeedIn;
            animation-name: lightSpeedIn;
            -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
        }

        .animated.lightSpeedIn {
            -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
        }
    </style>
</head>

<body>
    <div id="lsiAnimates" class="lsiAnimated"></div>
    <button onclick="lsiFun()">Click</button>

    <script>
        function lsiFun() {
            document.getElementById("lsiAnimates").classList.add('lightSpeedIn');
        }
    </script>
</body>

</html>

Output

It will produce the following result:

Light Speed In Effect
css_animation.htm
Advertisements