有没有办法淡入和淡出超大型加载器div,#supersized-loader?

时间:2013-01-08 20:22:28

标签: jquery fadein fadeout supersized

我对使用jquery的知识非常有限,并且通常可以混淆,但我有一个项目,客户端希望“预加载”图像在超大型幻灯片序列开始之前淡入和淡出。我在3.2.7 js文件中看到初始化和删除div的行,但是我可以修改它以将fadeIn和fadeOut分别放大约1.5秒吗?

$('#supersized-loader').remove();

1 个答案:

答案 0 :(得分:1)

你试过google吗?

http://api.jquery.com/fadeIn/

http://api.jquery.com/fadeOut/

// To fade in
$('#supersized-loader').fadeIn();

// To fade out
$('#supersized-loader').fadeOut();

// Chain commands...
$('#supersized-loader').hide().fadeIn().fadeOut().remove();

// ...or possibly
$('#supersized-loader').hide().fadeIn().fadeOut(function(){
    // Remove the layer.
    $(this).remove();
});