Contents
Description:
Display matched elements by fading them to opaque. In simple word, its animates the opacity for the matched elements.
Syntax
.fadeIn( $(“#div”).fadeIn(“slow”);
From the below code, the “divFadeBox” element has been set to display:none. So initially it will not visible during theย page load. After clickingย “divButton”, the fadeIn() will be executedย to the “divFadeBox” element.
After clicking “Click to fade in boxes” button, then the blue box will be fadeIn as shown below. Before button click After button click, it will be fade-in with duration of 2000 milli second & swing effect. After fade-in completed, callback method will be executed. Finally “fadein() is now complete” text will be append to the buttonย button as shown below. $(“#divButton”).attr(‘value’, ‘fadeIn() is now Complete‘);
Duration/speed
ย It specifies the speed of the fadein. The valuse may be slow, fast and milliseconds. (default value: 400)
Easing
ย It specifies the easing function to be used for transition (default value: swing).
Callback
A function to call once the animation is complete.
Example: Without Option(parameter)
Output:ย
Example : With Option(parameter)
Output
Leave A Comment