【发布时间】:2011-06-15 06:48:04
【问题描述】:
为什么动画在执行之前要等待淡入完成,谁能帮我解释一下?
//Price Navigation FadeIn
$('#header-base > ul').hide().css({'top':'50px'});
$('#header-base > ul').fadeIn(500);
$('#header-base > ul').animate({'top':'0px'});
我希望淡入和动画同时发生。
【问题讨论】:
标签: javascript jquery html css animation