link Showing and Hiding Content
jQuery can show or hide content instantaneously with .show()
or .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 .show()
and .hide()
to use animation in a couple of ways. One is to pass in an 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 .show()
and .hide()
:
1
2
3
4
5
|
|
Most developers pass in a number of milliseconds to have more precise control over the duration.
link Fade and Slide Animations
You may have noticed that .show()
and .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. .slideDown()
and .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 .fadeIn()
and .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
|
|
link Changing Display Based on Current Visibility State
jQuery can also let you change a content's visibility based on its current visibility state. .toggle()
will show content that is currently hidden and hide content that is currently visible. You can pass the same arguments to .toggle()
as you pass to any of the effects methods above.
1
2
3
4
5
6
7
8
|
|
.toggle()
will use a combination of slide and fade effects, just as .show()
and .hide()
do. You can toggle the display of content with just a slide or a fade using .slideToggle()
and .fadeToggle()
.
1
2
3
4
5
|
|
link 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 .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 .fadeIn()
, it starts the animation loop and then returns the jQuery object, passing it along to .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
|
|
link Managing Animation Effects
jQuery provides some additional features for controlling your animations:
link .stop()
.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
|
|
link .delay()
.delay()
is used to introduce a delay between successive animations. For example:
1
2
3
|
|
link 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
|
|
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 is displayed in an animation. The default value is 13 milliseconds between successive frames. You can set this to 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
|
|