我有这个jquery函数会发生什么是profilecontain从下到上然后从上到下滑动。但是,当它滑动时,它从顶部和底部两个方向打开,而我希望它是从底部到顶部和从顶部到底部的平滑滑动。
$(document).ready(function(){
$("#profilelink").toggle( function(){
$("#profilelink").animate({"top": "237px"}, "slow");
$("#profilees").animate({"height": "290px", "top": "-165px"}, "slow");
//$("#newses").animate({"height": "310px"}, "slow");
$("#profilecontain").animate({"height": "270px", 'top': '-154px'}, "slow");
}, function(){
$("#profilelink").animate({"top": "527px"}, 'slow');
$("#profilees").animate({"height": "0px", "top": "8px"}, 'slow');
$("#profilecontain").animate({"height": "0px", "top": "0px"}, 'slow');
});
});