-2

我希望 div 在我向上滚动时显示,当我向下滚动到页面时它会出现。

请帮助我,我是 jquery 的新手

4

1 回答 1

2
function MyUpDownFunction(){

    var top-height= $('header-div-element').position().top + <any-other-custom-height>;


    if( $(window).scrollTop() > top-height ){
        $('#your-div').slideDown();
    }else{
        $('#your-div').slideUp();
    }
}
于 2012-12-27T05:54:27.933 回答