首页 > 代码库 > jQuery显示与隐藏返回顶层的箭头

jQuery显示与隐藏返回顶层的箭头

<script type="text/javascript">
        $(window).scroll(function(){
            var disTop = $(window).scrollTop();
            if(disTop > 250){
                $("#top").fadeIn(600);
            }else{
                $("#top").fadeOut(600);
            }
        });
        $(function(){
            $("#top").click(function(){
                $("html,body").animate({
                    scrollTop: 0
                },1500);
            })
        });

</script>

jQuery显示与隐藏返回顶层的箭头