Jquery fadeIn() Method
Jquery fadeIn()
method is used to show the hidden element gradually. After applying the fadeIn()
method element opacity is gradually increased from zero to one. Therefore hidden element is shown gradually.
General Syntax
$(selector).fadein();
$(selector).fadeIn(speed,callback);
$(selector).fadeIn(speed, easing, callback);
speed: It is an optional parameter. It specifies the speed of the delay of the fadeIn()
method. It has the following values: "slow", "fast" and milliseconds.
easing: It specifies the easing function that is used for transition.
callback: It is also an optional parameter. The callback function will be called after the completion of fadein()
effect.