JavaScript强化教程——jQuery 动画2

本文为H5EDU机构官方HTML5培训教程,主要介绍:JavaScript强化教程——jQuery动画2

实例

jQueryfadeIn()

演示jQueryfadeIn()方法。

jQueryfadeOut()

演示jQueryfadeOut()方法。

jQueryfadeToggle()

演示jQueryfadeToggle()方法。

jQueryfadeTo()

演示jQueryfadeTo()方法。

jQueryFading方法

通过jQuery,您可以实现元素的淡入淡出效果。

jQuery拥有下面四种fade方法:

fadeIn()

fadeOut()

fadeToggle()

fadeTo()

jQueryfadeIn()方法

jQueryfadeIn()用于淡入已隐藏的元素。

语法:

$(selector).fadeIn(speed,callback);

可选的speed参数规定效果的时长。它可以取以下值:"slow"、"fast"或毫秒。.

可选的callback参数是fading完成后所执行的函数名称。

下面的例子演示了带有不同参数的fadeIn()方法:

实例

$("button").click(function(){

$("#div1").fadeIn();

$("#div2").fadeIn("slow");

$("#div3").fadeIn(3000);

});

jQueryfadeOut()方法

jQueryfadeOut()方法用于淡出可见元素。

语法:

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

可选的speed参数规定效果的时长。它可以取以下值:"slow"、"fast"或毫秒。

可选的callback参数是fading完成后所执行的函数名称。

下面的例子演示了带有不同参数的fadeOut()方法:

实例

$("button").click(function(){

$("#div1").fadeOut();

$("#div2").fadeOut("slow");

$("#div3").fadeOut(3000);

});

相关推荐