有没有办法快速切换元素?
我现在有这个:
$('.appearLate, .topMnu').toggle('hide');
但它默认逐渐消失。 我需要它快速淡出,但无法解决如何应用属性。
有人可以告诉我我该怎么办?
答案 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
答案 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');