CSS - Flip In X-Axis Effect



Description

An Element can turn over or cause to turn over with a sudden quick movement.

Syntax

@keyframes flipInX {
   0% {
      transform: perspective(400px) rotateX(90deg);
      opacity: 0;
   }
   40% {
      transform: perspective(400px) rotateX(-10deg);
   }
   70% {
      transform: perspective(400px) rotateX(10deg);
   }
   100% {
      transform: perspective(400px) rotateX(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>
        .fixAnimated {
            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: 2s;
            animation-duration: 2s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
        }


        @-webkit-keyframes flipInX {
            0% {
                -webkit-transform: perspective(400px) rotateX(180deg);
                opacity: 0;
            }

            100% {
                -webkit-transform: perspective(400px) rotateX(0deg);
                opacity: 1;
            }
        }

        @keyframes flipInX {
            0% {
                transform: perspective(400px) rotateX(180deg);
                opacity: 0;
            }

            /* 40% {
                transform: perspective(400px) rotateX(-20deg);
            }

            70% {
                transform: perspective(400px) rotateX(10deg);
            } */

            100% {
                transform: perspective(400px) rotateX(0deg);
                opacity: 1;
            }
        }

        .flipInX {
            -webkit-backface-visibility: visible !important;
            -webkit-animation-name: flipInX;
            backface-visibility: visible !important;
            animation-name: flipInX;
        }
    </style>
</head>

<body>
    <div id="fixAnimates" class="fixAnimated"></div>
    <button onclick="fixFun()">Click</button>

    <script>
        function fixFun() {
            document.getElementById("fixAnimates").classList.add('flipInX');
        }
    </script>
</body>

</html>

Output

It will produce the following result:

Flip in x Effect
css_animation.htm
Advertisements