jquery滑块从两个方向切换

时间:2012-12-10 07:24:30

标签: jquery

我有这个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');
            });
        });

0 个答案:

没有答案