网页滚动一段距离,显示固定的导航栏(div)

js部分:
<script>
    function getTop() {
        var mytop = $(document).scrollTop();
        if (mytop > 400) {
            $(".fixed_banner").css({
                ‘display‘: ‘block‘,
                ‘top‘: 0,
            });
        } else {
            $(".fixed_banner").css(‘display‘, ‘none‘);
        }
        setTimeout(getTop);
    }

    getTop();
</script> 

 

css部分
 .fixed_banner {
    position: fixed;
    bottom: 10px;
    height: 100px;
    z-index: 10000;
    display: none;
}

 

网页滚动一段距离,显示固定的导航栏(div)

上一篇:【转】基于.NET平台常用的框架整理


下一篇:AngularJS的路由、模块、依赖注入