关闭,jQuery淡出

时间:2010-08-05 23:56:25

标签: jquery fadeout

我对此代码有疑问

$(document).ready(function(){
    $('.nm_close').click(function(){
        $('.map_pops').css('display','none');
    });
});

我想要的是这个气泡弹出窗口会在关闭时淡出。谢谢!

2 个答案:

答案 0 :(得分:2)

您是否尝试过fadeOut(250);

所以,$('.map_pops').fadeOut(250);

btw:250是淡出所需的毫秒数。所以5000就是5秒(ish)。

答案 1 :(得分:0)

您需要使用fadeOut()函数(请参阅:http://api.jquery.com/fadeOut/)。

$(document).ready(function(){
    $('.nm_close').click(function(){
        $('.map_pops').fadeOut(<duration>);
    });
});

是你希望它在慢速,快速等时淡出的时间长度。它在fadeOut()的文档中都是