jQuery Tutorials
jQuery Effects
jQuery HTML
jQuery Traversing
jQuery AJAX
jQuery Misc
With jQuery you can blur the feature inside and out visually.
jQuery has the following fade methods:
fadeIn()
fadeOut()
fadeToggle()
fadeTo()
The jQuery fadeIn()
method is used to blur a hidden object.
Syntax:
Optional speed parameter specifies the duration of the output. It can take the following values: "slow", "fast", or milliseconds.
The re-dialing parameter you choose is the function to be used after the blurring.
The following example illustrates the fadeIn()
method with different parameters:
The jQuery fadeOut()
method is used to turn off an object.
Syntax:
Optional speed parameter specifies the duration of the output. It can take the following values: "slow", "fast", or milliseconds.
The re-dialing parameter you choose is the function to be used after the blurring.
The following example illustrates the fadeOut()
method with different parameters:
The jQuery fadeToggle()
method switches between fadeIn()
and fadeOut()
methods.
If features are blurred, fadeToggle()
will blur in the middle.
If features are blurred, fadeToggle()
will blur them.
Syntax:
Optional speed parameter specifies the duration of the output. It can take the following values: "slow", "fast", or milliseconds.
The re-dialing parameter you choose is the function to be used after the blurring.
The following example illustrates the fadeToggle()
method with different parameters:
The jQuery fadeTo()
method allows blur to a given opacity (value between 0 and 1).
Syntax:
The required speed parameter determines the length of the result. It can take the following values: "slow", "fast", or milliseconds.
The blurring parameter required in the fadeTo()
method specifies the blurring in the given blurring area (value between 0 and 1).
The optional call parameter is a function to be used after completion of the task.
The following example illustrates the fadeTo()
method with different parameters: