如何使用jquery控制渐变速度

How to control the fade speed with jquery?

本文关键字:渐变 速度 控制 jquery 何使用      更新时间:2023-09-26

如何控制淡出动画速度:

setTimeout(fade_out, 5000);
function fade_out() {
    $("#LoadingGIF").fadeOut().empty();
}
$('#LoadingGIF').fadeOut('slow' /* 400 (milliseconds) , fast, etc. */);

在fadeOut函数中设置速度

.fadeOut(1000)

如果您想在淡入后清空元素,可以使用回调参数

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