快速切换hide()?

时间:2013-08-30 10:09:48

标签: javascript jquery

有没有办法快速切换元素?

我现在有这个:

 $('.appearLate, .topMnu').toggle('hide');

但它默认逐渐消失。 我需要它快速淡出,但无法解决如何应用属性。

有人可以告诉我我该怎么办?

4 个答案:

答案 0 :(得分:2)

这将起作用

$('.appearLate, .topMnu').toggle('fast');
$('.appearLate, .topMnu').toggle(100); //pass time in milliseconds 

$('.appearLate, .topMnu').fadeOut('fast');
$('.appearLate, .topMnu').fadeOut(100);//pass time in milliseconds 

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

答案 1 :(得分:0)

我认为你正在寻找fadeOut()功能:

$(selector).fadeOut('fast');

答案 2 :(得分:0)

$('.appearLate, .topMnu').toggle(100); //100 being number of milisecconds to perform translation

答案 3 :(得分:0)

你可以

$('.appearLate, .topMnu').slideToggle('fast');

$('.appearLate, .topMnu').fadeToggle('fast');