Open In App

jQuery Effect fadeOut() Method

The fadeOut()Method in jQuery is used to change the level of opacity for selected element from visible to hidden. By using this method, the faded element will not occupy any space. 

Syntax:



$(selector).fadeOut( speed, easing, callback )

Parameters: This method accepts three parameters as mentioned above and described below:

Example 1: This example display fadeIn and fadeOut effect. 






<!DOCTYPE html>
<html>
  
<head>
    <title>
        jQuery | fadeOut() Method
    </title>
    <script src=
    </script>
</head>
  
<body style="text-align:center;">
  
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>jQuery | fadeOut() Method</h2>
    <button class="btn1">Fade out</button>
    <button class="btn2">Fade in</button>
  
    <!-- Script to display fadeIn and fadeOut effect -->
    <script>
        $(document).ready(function () {
            $(".btn1").click(function () {
                $("h2").fadeOut()
            });
  
            $(".btn2").click(function () {
                $("h2").fadeIn();
            });
        });
    </script>
</body>
  
</html>

Output:

 

Example 2: This example create fadeIn and fadeOut effect and set its speed. The given speed in terms of milliseconds. 




<!DOCTYPE html>
<html>
  
<head>
    <title>
        jQuery | fadeOut() Method
    </title>
    <script src=
    </script>
</head>
  
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>jQuery | fadeOut() Method</h2>
    <button class="btn1">Fade out</button>
    <button class="btn2">Fade in</button>
  
    <script>
        $(document).ready(function () {
            $(".btn1").click(function () {
                $("h2").fadeOut(1000);
            });
  
            $(".btn2").click(function () {
                $("h2").fadeIn(1000);
            });
        });
    </script>
</body>
  
</html>

Output:

 

Example 3: Create fadeIn and fadeOut effect with alert message. 




<!DOCTYPE html>
<html>
  
<head>
    <title>
        jQuery | fadeOut() Method
    </title>
    <script src=
    </script>
</head>
  
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>jQuery | fadeOut() Method</h2>
    <button class="btn1">Fade out</button>
    <button class="btn2">Fade in</button>
  
    <!-- Script to create fadeIn and fadeOut effect -->
    <script>
        $(document).ready(function () {
            $(".btn1").click(function () {
                $("h2").fadeOut(1000, function () {
                    alert("fadeOut() method is finished!");
                });
            });
  
            $(".btn2").click(function () {
                $("h2").fadeIn(1000, function () {
                    alert("fadeIn() method is finished!");
                });
            });
        });
    </script>
</body>
  
</html>

Output:

 


Article Tags :