CSS - Rotate In Up Left Effect



Description

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

Syntax

@keyframes rotateIn { 
   0% { 
      transform-origin: center center; 
      transform: rotate(-200deg); 
      opacity: 0; 
   } 
   100% { 
      transform-origin: center center; 
      transform: rotate(0); 
      opacity: 1; 
   } 
} 

Parameters

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

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

Example

<!DOCTYPE html>
<html lang="en">

<head>
    <style>
        .riulAnimated {
            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;
            animation-duration: 3s;
            animation-fill-mode: both;
            -webkit-animation-fill-mode: both;
        }

        @keyframes rotateInUpLeft {
            0% {
                transform-origin: top left;
                transform: rotate(10deg);
                opacity: 0;
            }

            100% {
                transform-origin: top left;
                transform: rotate(0);
                opacity: 1;
            }
        }

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

<body>

    <div id="riulAnimates" class="riulAnimated"></div>
    <button onclick="riulFun()">Click</button>

    <script>
        function riulFun() {
            document.getElementById("riulAnimates").classList.add('rotateInUpLeft');
        }
    </script>
</body>

</html>

Output

It will produce the following result:

Rotate In Up Left Effect
css_animation.htm
Advertisements