0

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

我现在有这个:

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

但默认情况下它会逐渐消失。我需要它快速淡出,但无法弄清楚如何应用该属性。

有人可以告诉我我该怎么做吗?

4

4 回答 4

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/

于 2013-08-30T10:10:18.463 回答
0

我认为您正在寻找fadeOut()函数:

$(selector).fadeOut('fast');
于 2013-08-30T10:10:55.870 回答
0
$('.appearLate, .topMnu').toggle(100); //100 being number of milisecconds to perform translation
于 2013-08-30T10:11:40.623 回答
0

你可以

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

或者

$('.appearLate, .topMnu').fadeToggle('fast');
于 2013-08-30T10:12:58.070 回答