.fadeTo( duration, opacity [, complete ] ) Returns: jQuery
Description: Adjust the opacity of the matched elements.
-
version added: 1.0.fadeTo( duration, opacity [, complete ] )
-
version added: 1.4.3.fadeTo( duration, opacity [, easing ] [, complete ] )
-
durationA string or number determining how long the animation will run.
-
opacityType: NumberA number between 0 and 1 denoting the target opacity.
-
easingType: StringA string indicating which easing function to use for the transition.
-
completeType: Function()A function to call once the animation is complete.
-
The .fadeTo()
method animates the opacity of the matched elements.
Durations are given in milliseconds; higher values indicate slower animations, not faster ones. The strings 'fast'
and 'slow'
can be supplied to indicate durations of 200
and 600
milliseconds, respectively. If any other string is supplied, the default duration of 400
milliseconds is used. Unlike the other effect methods, .fadeTo()
requires that duration
be explicitly specified.
If supplied, the callback is fired once the animation is complete. This can be useful for stringing different animations together in sequence. The callback is not sent any arguments, but this
is set to the DOM element being animated. If multiple elements are animated, it is important to note that the callback is executed once per matched element, not once for the animation as a whole.
We can animate any element, such as a simple image:
1
2
3
4
5
6
7
8
9
10
|
|
With duration
set to 0
, this method just changes the opacity
CSS property, so .fadeTo(0, opacity)
is the same as .css('opacity', opacity)
.
Additional Notes:
- All jQuery effects, including
.fadeTo()
, can be turned off globally by settingjQuery.fx.off = true
, which effectively sets the duration to 0. For more information, see jQuery.fx.off.
Examples:
Example: Animates first paragraph to fade to an opacity of 0.33 (33%, about one third visible), completing the animation within 600 milliseconds.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
|
Example: Fade div to a random opacity on each click, completing the animation within 200 milliseconds.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
|
Example: Find the right answer! The fade will take 250 milliseconds and change various styles when it completes.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
|