jQuery FadeIn () Animation Method; In this tutorial, you will learn what is jQuery fadeIn animation effect method and how to use this method with HTML elements.
jQuery FadeIn Animation Effect Method with Example
The fadeIn()
method in jQuery serves the purpose of gradually revealing hidden selected HTML elements by employing an animation effect. This method is particularly useful when you want to make hidden content gradually appear on a web page, providing a smooth and visually appealing transition.
Syntax of jQuery FadeIn Animation Effect Method
$(selector).fadeIn();
$(selector).fadeIn(speed, callback);
$(selector).fadeIn(speed, easing, callback);
Parameters of jQuery FadeIn Animation Effect Method
- speed :- The argument ‘speed‘ determines the duration of this effect. Its possible vales are slow, fast and milliseconds.
- easing :- It specifies the easing function to be used for transition.
- callback :- This is an optional parameter. you can specify what to do after the fadeIn() method is called.
Example of jQuery FadeIn Animation Effect Method
In the below example you can see that fadeIn() method effect.
<!DOCTYPE html> <html> <head> <title>jQuery FadeIn Method</title> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#first").fadeIn(); $("#second").fadeIn("slow"); $("#third").fadeIn(3000); }); }); </script> </head> <body> <p>See the fadeIn() method example with different parameters.</p> <button>Click here for fade In</button><br><br> <div id="first" style="width:100px;height:100px;display:none;background-color:yellow;"></div><br> <div id="second" style="width:100px;height:100px;display:none;background-color:red;"></div><br> <div id="third" style="width:100px;height:100px;display:none;background-color:green;"></div> </body> </html>
In this above example fadeIn() method, you can see that fadeIn() effect on html elements