Latest web development tutorials

jQuery effects show () method

jQuery Effect Methods jQuery Effect Methods

Examples

Show all hidden <p> element:

$("button").click(function(){
$("p").show();
});

try it"

Definition and Usage

show () method to display the hidden selected elements.

Note: show () method applies by jQuery and CSS in display: none to hide elements (not applicable to visibility: hidden hidden element).

Tip: To hide the element, see the hide () method.


grammar

$(selector).show(speed,easing,callback)

参数 描述
speed 可选。规定显示效果的速度。

可能的值:

  • 毫秒
  • "slow"
  • "fast"
easing 可选。规定在动画的不同点上元素的速度。默认值为 "swing"。

可能的值:

  • "swing" - 在开头/结尾移动慢,在中间移动快
  • "linear" - 匀速移动
提示:扩展插件中提供更多可用的 easing 函数。
callback 可选。show() 方法执行完之后,要执行的函数。

如需学习更多有关 callback 的内容,请访问我们的 jQuery Callback 这一章。



Examples

More examples

show () - use speed parameter
When the Hide / Show element, how to use speed parameter.

show () - the use of callback parameters
When the Hide / Show element, how to use the callback parameter.


jQuery Effect Methods jQuery Effect Methods