有没有办法快速切换元素?
我现在有这个:
$('.appearLate, .topMnu').toggle('hide');
但默认情况下它会逐渐消失。我需要它快速淡出,但无法弄清楚如何应用该属性。
有人可以告诉我我该怎么做吗?
有没有办法快速切换元素?
我现在有这个:
$('.appearLate, .topMnu').toggle('hide');
但默认情况下它会逐渐消失。我需要它快速淡出,但无法弄清楚如何应用该属性。
有人可以告诉我我该怎么做吗?
这会起作用
$('.appearLate, .topMnu').toggle('fast');
$('.appearLate, .topMnu').toggle(100); //pass time in milliseconds
或者
$('.appearLate, .topMnu').fadeOut('fast');
$('.appearLate, .topMnu').fadeOut(100);//pass time in milliseconds
我认为您正在寻找fadeOut()函数:
$(selector).fadeOut('fast');
$('.appearLate, .topMnu').toggle(100); //100 being number of milisecconds to perform translation
你可以
$('.appearLate, .topMnu').slideToggle('fast');
或者
$('.appearLate, .topMnu').fadeToggle('fast');