.fadeOut()
JQ Home <<
Effects <<
.fadeOut()
Fading out elements.
Description
The .fadeOut()
method is used to hide the matched set by fading it to transparent.
Syntax
Signature | Description |
---|---|
.fadeOut( [duration] [, easing] [, callback] ) | Hide the matched set by fading it to transparent optionally providing a duration, and/or an easing and/or a callback function. |
Parameters
Parameter | Description | Type |
---|---|---|
duration | A string or number determining the time the animation will run for. default: 400
| String orNumber |
easing | Specify the speed at which the animation progresses at different points within the animation. default: swing
| String |
callback | A function that fires once the animation is complete.
|
Function |
Return
A jQuery
object.
.fadeOut( [duration] [, easing] [, callback] )
Example
Effects << Top
Hide the matched set by fading it to transparent, optionally providing a duration and/or an easing and/or a callback function.
- When used in its basic form with no parameters or incorrect parameters the
.fadeOut()
method defaults to fading out the element(s) with aduration
of 400 milliseconds which is the default.
In the example below when the first button is pressed we fade out the first image and it defaults to a fade out duration of 400 milliseconds.
When the second button is pressed we use 'swing' easing to animate the picture as we fade it out.
When the third button is pressed we use a callback to alert when the image is faded out.
When the fourth button is pressed we use a duration, easing and a callback to alert when the images are faded out.
$(function(){
$('#btn5').on('click', function() {
$('#curry2').fadeOut();
});
$('#btn6').on('click', function() {
$('#pie4').fadeOut('swing');
});
$('#btn7').on('click', function() {
$('#pie5').fadeOut(function() {
alert('Animation finished.');
});
});
$('#btn8').on('click', function() {
$('.pie6').first().fadeOut('slow', 'swing', function() {
// using 'callee' so we don't have to name the function
$(this).next().fadeOut(1200, arguments.callee);
});
});
});
Related Tutorials
jQuery Intermediate Tutorials - Lesson 7 - Fading & Sliding Effects