CSS - Bounce out Effect



Description

Bounce Animation effect is used to move the element quick up, back, or away from a surface after hitting it.

Syntax

@keyframes bounceOut {
   0% {
      transform: scale(1);
   }
   25% {
      transform: scale(.95);
   }
   50% {
      opacity: 1;
      transform: scale(1.1);
   }
   100% {
      opacity: 0;
      transform: scale(.3);
   }
} 

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

        @-webkit-keyframes bounceOut {
            0% {
                -webkit-transform: scale(1);
            }

            25% {
                -webkit-transform: scale(.95);
            }

            50% {
                opacity: 1;
                -webkit-transform: scale(1.1);
            }

            100% {
                opacity: 0;
                -webkit-transform: scale(.3);
            }
        }

        @keyframes bounceOut {
            0% {
                transform: scale(1);
            }

            25% {
                transform: scale(.95);
            }

            50% {
                opacity: 1;
                transform: scale(1.1);
            }

            100% {
                opacity: 0;
                transform: scale(.3);
            }
        }

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

<body>
    <div id="boAnimates" class="boAnimated"></div>
    <button onclick="boFun()">Click</button>
    <script>
        function boFun() {
            document.getElementById("boAnimates").classList.add('bounceOut');
        }
    </script>
</body>

</html>

Output

It will produce the following result

Bounce Out Animation Effect
css_animation.htm
Advertisements