在Scroll Animate / SlideUp div上

时间:2013-02-04 16:41:37

标签: jquery html scroll scrollto

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

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

1 个答案:

答案 0 :(得分: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)
        }
    });
});