如何用jquery控制淡入淡出速度?

时间:2014-08-29 00:22:19

标签: javascript jquery html

如何控制FadeOut动画速度:

setTimeout(fade_out, 5000);

function fade_out() {
    $("#LoadingGIF").fadeOut().empty();
}

3 个答案:

答案 0 :(得分:0)

在fadeOut函数中设置速度

.fadeOut(1000)

答案 1 :(得分:0)

$('#LoadingGIF').fadeOut('slow' /* 400 (milliseconds) , fast, etc. */);

答案 2 :(得分:0)

如果要在淡化后清空元素,可以使用回调参数

$LoadingGIF=$("#LoadingGIF");
$LoadingGIF.fadeOut(5000,function(){
  $LoadingGIF.empty();
});