.dequeue(\"queuename\") to start it.","type":[{"name":"Boolean"},{"name":"String"}],"name":"queue","default":"true"},{"desc":"A map of one or more of the CSS properties defined by the properties argument and their corresponding easing functions.","name":"specialEasing","type":"PlainObject","added":"1.4"},{"desc":"A function to be called for each animated property of each animated element. This function provides an opportunity to modify the Tween object to change the value of the property before it is set.","argument":[{"desc":"The numeric value of the property being animated at each step","name":"now","type":"Number"},{"desc":"An object of properties related to the animation and the element being animated. For information about the tween object and its properties, see Hello
\nClick to hide me too\nHere is another paragraph
\n"},{"desc":"Animates all shown paragraphs to hide slowly, completing the animation within 600 milliseconds.","code":"\n$( \"button\" ).click(function() {\n $( \"p\" ).hide( \"slow\" );\n});\n","css":"\n p {\n background: #dad;\n font-weight: bold;\n }\n","html":"\n\nHiya
\nSuch interesting text, eh?
\n"},{"desc":"Animates all spans (words in this case) to hide fastly, completing each animation within 200 milliseconds. Once each animation is done, it starts the next one.","code":"\n$( \"#hider\" ).click(function() {\n $( \"span:last-child\" ).hide( \"fast\", function() {\n // Use arguments.callee so we don't need a named function\n $( this ).prev().hide( \"fast\", arguments.callee );\n });\n});\n$( \"#shower\" ).click(function() {\n $( \"span\" ).show( 2000 );\n});\n","css":"\n span {\n background: #def3ca;\n padding: 3px;\n float: left;\n }\n","html":"\n\n\nWith no parameters, the .hide() method is the simplest way to hide an element:
\n$( \".target\" ).hide();\n \n The matched elements will be hidden immediately, with no animation. This is roughly equivalent to calling .css( \"display\", \"none\" ), except that the value of the display property is saved in jQuery's data cache so that display can later be restored to its initial value. If an element has a display value of inline and is hidden then shown, it will once again be displayed inline.
When a duration, a plain object, or a \"complete\" function is provided, .hide() becomes an animation method. The .hide() method animates the width, height, and opacity of the matched elements simultaneously. When these properties reach 0, the display style property is set to none to ensure that the element no longer affects the layout of the page.
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.
Note that .hide() is fired immediately and will override the animation queue if no duration or a duration of 0 is specified.
As of jQuery 1.4.3, an optional string naming an easing function may be used. Easing functions specify the speed at which the animation progresses at different points within the animation. The only easing implementations in the jQuery library are the default, called swing, and one that progresses at a constant pace, called linear. More easing functions are available with the use of plug-ins, most notably the jQuery UI suite.
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:
\n\n<div id=\"clickme\">\n Click here\n</div>\n<img id=\"book\" src=\"book.png\" alt=\"\" width=\"100\" height=\"123\">\n \n \n// With the element initially shown, we can hide it slowly:\n$( \"#clickme\" ).click(function() {\n $( \"#book\" ).hide( \"slow\", function() {\n alert( \"Animation complete.\" );\n });\n});\n \n \n
\n
\n
\n
\n