Latest web development tutorials

jQuery effects fadeOut () method

jQuery Effect Methods jQuery Effect Methods

Examples

Show all using fade-out effect <p> element:

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

try it"

Definition and Usage

fadeOut () method gradually change the opacity of the selected element, can be seen from the hide (fade).

Note: The hidden element is not completely displayed (no longer affects the layout of the page).

Tip: This method is usually fadeIn () used with the method.

grammar

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

参数 描述
speed 可选。规定褪色效果的速度。

可能的值:

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

可能的值:

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

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



Examples

Try - Example

fadeOut () - use speed parameter
How to use speed parameter to a predetermined speed fade effect.

fadeIn () - the use of callback parameters
When gradually change the opacity of the selected element when, how to use the callback parameter.


jQuery Effect Methods jQuery Effect Methods