私はこの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');
});
});