CSS - Fade Out Effect



Description

The image come or cause to come gradually into or out of view, or to merge into another shot.

Syntax

@keyframes fadeOut {
   0% {opacity: 1;}
   100% {opacity: 0;} 
} 

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

        @-webkit-keyframes fadeOut {
            0% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }

        @keyframes fadeOut {
            0% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }

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

<body>
    <div id="foAnimates" class="foAnimated"></div>
    <button onclick="foFun()">Click</button>
    <script>
        function foFun() {
            document.getElementById("foAnimates").classList.add('fadeOut');
        }
    </script>

</body>

</html>

Output

It will produce the following result:

fade out output
css_animation.htm
Advertisements