0

嗨伙计们,我整天都在谷歌上搜索,但找不到如何实现它的答案。滚动后,我希望屏幕底部的 div 位置向上滑动到该站点:

http://www.chanel.com/en_SG/。谢谢你的帮助。

4

1 回答 1

3

这可以通过一点 jQuery 来完成。

这是您可以使用的一些基本示例:(http://jsfiddle.net/ujmMk/5/

$(function(){
    $(window).scroll(function(){ //onscroll
        var scrolleddown = false;//used to keep the state
        if($(window).scrollTop() > 1){ //if they've scrolled down
            if(scrolleddown == false){
                scrolleddown = true;
                $('#content').stop(true, false).animate({top:'0%'},500,function(){//show it
                    $('#topcontent').hide();//hide to original content, in this case "hi!"'s
                    $(this).css("position","relative"); //make it be able to scroll down
                });
            }
        }else{
            //below resets everything back to original state when user scrolls back up
            scrolleddown = false;
            $('#topcontent').show();
                $('#content').css("position","fixed").stop(true, false).animate({top:'99%'},500)
        }
    });
});
于 2013-02-05T02:54:02.123 回答