CSS - Rotate Out Down Left Effect



Description

It provides to move or cause to move in a circle round an axis or centre.

Syntax

@keyframes rotateOutDownLeft {
   0% {
      transform-origin: left bottom;
      transform: rotate(0);
      opacity: 1;
   }
   100% {
      transform-origin: left bottom;
      transform: rotate(90deg);
      opacity: 0;
   }
} 

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>
        .rodlAnimated {
            background-image: url(/html/images/test.png);
            background-repeat: no-repeat;
            background-position: left top;
            padding-top: 95px;
            margin-bottom: 100px;
            -webkit-animation-duration: 3s;
            animation-duration: 3s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
        }


        @-webkit-keyframes rotateOutDownLeft {
            0% {
                -webkit-transform-origin: left bottom;
                -webkit-transform: rotate(0);
                opacity: 1;
            }

            100% {
                -webkit-transform-origin: left bottom;
                -webkit-transform: rotate(45deg);
                opacity: 0;
            }
        }

        @keyframes rotateOutDownLeft {
            0% {
                transform-origin: left bottom;
                transform: rotate(0);
                opacity: 1;
            }

            100% {
                transform-origin: left bottom;
                transform: rotate(45deg);
                opacity: 0;
            }
        }

        .rotateOutDownLeft {
            -webkit-animation-name: rotateOutDownLeft;
            animation-name: rotateOutDownLeft;
        }
    </style>
</head>

<body>
    <div id="rodlAnimates" class="rodlAnimated"></div>
    <button onclick="rodlFun()">Click</button>

    <script>
        function rodlFun() {
            document.getElementById("rodlAnimates").classList.add('rotateOutDownLeft');
        }
    </script>
</body>

</html>

Output

It will produce the following result.

Rotate Out Down Left Effect
css_animation.htm