.show( effect [, options ] [, duration ] [, complete ] )Returns: jQuery
Description: Display the matched elements, using custom effects.
-
.show( effect [, options ] [, duration ] [, complete ] )
-
effectType: StringA string indicating which effect to use for the transition.
-
optionsType: ObjectEffect-specific properties and easing.
-
duration (default:
400
)A string or number determining how long the animation will run. -
completeType: Function()A function to call once the animation is complete, called once per matched element.
-
-
.show( options )
-
optionsType: ObjectAll animation settings. The only required property is
effect
.-
effectType: StringA string indicating which effect to use for the transition.
-
easing (default:
"swing"
)Type: StringA string indicating which easing function to use for the transition. -
duration (default:
400
)A string or number determining how long the animation will run. -
completeType: Function()A function to call once the animation is complete, called once per matched element.
-
queue (default:
true
)A Boolean indicating whether to place the animation in the effects queue. Iffalse
, the animation will begin immediately. A string can also be provided, in which case the animation is added to the queue represented by that string.
-
-
This plugin extends jQuery's built-in .show()
method. If jQuery UI is not loaded, calling the .show()
method may not fail directly, as the method still exists. However, the expected behavior will not occur.
Example:
Show a div using the fold effect.
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
|
|