Introduction to Effects
Showing and Hiding Content
jQuery can show or hide content instantaneously with $.fn.show or $.fn.hide:
|
1
2
3
4
5
|
|
When jQuery hides an element, it sets its CSS display property to none. This means the content will have
zero width and height; it does not mean that the content will simply become transparent and leave an empty area on the page.
jQuery can also show or hide content by means of animation effects. You can tell
$.fn.show and $.fn.hide to use animation in a couple of ways. One is to pass
in a string-valued argument of slow, normal, or fast:
|
1
2
3
4
5
|
|
If you prefer more direct control over the duration of the animation effect, you
can pass the desired duration in milliseconds to $.fn.show and $.fn.hide:
|
1
2
3
4
5
|
|
Most developers pass in a number of milliseconds to have more precise control over the duration.
Fade and Slide Animations
You may have noticed that $.fn.show and $.fn.hide use a combination of slide and fade effects
when showing and hiding content in an animated way. If you would rather show or hide content with
one effect or the other, there are additional methods that can help. $.fn.slideDown and $.fn.slideUp
show and hide content, respectively, using only a slide effect. Slide animations are accomplished by
rapidly making changes to an element's CSS height property.
|
1
2
3
4
5
|
|
Similarly $.fn.fadeIn and $.fn.fadeOut show and hide content, respectively, by means of a fade
animation. Fade animations involve rapidly making changes to an element's CSS opacity property.
|
1
2
3
4
5
|
|
Changing Display Based on Current Visibility State
jQuery can also let you change a content's visibility based on its current visibility state. $.fn.toggle
will show content that is currently hidden and hide content that is currently visible. You can pass the
same arguments to $.fn.toggle as you pass to any of the effects methods above.
|
1
2
3
4
5
6
7
8
|
|
$.fn.toggle will use a combination of slide and fade effects, just as $.fn.show and $.fn.hide do. You can
toggle the display of content with just a slide or a fade using $.fn.slideToggle and $.fn.fadeToggle.
|
1
2
3
4
5
|
|
Doing Something After an Animation Completes
A common mistake when implementing jQuery effects is assuming that the execution of the next method in your chain will wait until the animation runs to completion.
|
1
2
|
|
It is important to realize that $.fn.fadeIn above only kicks off the animation. Once started, the
animation is implemented by rapidly changing CSS properties in a JavaScript setInterval() loop. When
you call $.fn.fadeIn, it starts the animation loop and then returns the jQuery object, passing it along
to $.fn.addClass which will then add the lookAtMe style class while the animation loop is just
getting started.
To defer an action until after an animation has run to completion, you need to use an animation callback function. You can specify your animation callback as the second argument passed to any of the animation methods discussed above. For the code snippet above, we can implement a callback as follows:
|
1
2
3
4
5
|
|
Note that you can use the keyword this to refer to the DOM element being animated. Also note
that the callback will be called for each element in the jQuery object. This means that if your
selector returns no elements, your animation callback will never run! You can solve this problem by
testing whether your selection returned any elements; if not, you can just run the callback immediately.
|
1
2
3
4
5
6
7
8
9
10
11
12
|
|
Managing Animation Effects
jQuery provides some additional features for controlling your animations:
$.fn.stop
$.fn.stop will immediately terminate all animations running on the elements in your selection. You might give
end-users control over page animations by rigging a button they can click to stop the animations.
|
1
2
3
4
5
6
7
|
|
$.fn.delay
$.fn.delay is used to introduce a delay between successive animations. For example:
|
1
2
3
|
|
jQuery.fx
The jQuery.fx object has a number of properties that control how effects are implemented. jQuery.fx.speeds maps
the slow, normal, and fast duration arguments mentioned above to a specific
number of milliseconds. The default value of jQuery.fx.speeds is:
|
1
2
3
4
5
6
|
|
You can modify any of these settings and even introduce some of your own:
|
1
2
3
|
|
jQuery.fx.interval controls the number of frames per second that are
displayed in an animation. The default value is 13 milliseconds between
successive frames. You can set this a lower value for faster browsers
to make the animations run smoother. However this will mean more frames
per second and thus a higher computational load for the browser, so you
should be sure to test the performance implications of doing so thoroughly.
Finally, jQuery.fx.off can be set to true to disable all animations. Elements
will immediately be set to the target final state instead. This can be
especially useful when dealing with older browsers; you also may want to
provide the option to disable all animations to your users.
|
1
2
3
4
5
6
|
|