js来控制导航栏在滚动条拉到一定位置时显示

<html>
<head>
    <title>test</title>
</head>
<body>
    <div style="position: fixed; height: 200px; background: red; width: 100%; display: none" id="topbar"></div>
    <div style="height: 3000px;">content</div>
</body>
<script type="text/javascript">
    window.onscroll = function () {
        var top = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop;
        var node = document.getElementById('topbar');
        if (top > 500) {//500就是滚动条滚动到的位置,大于500(500指500px)才显示
            node.style.display = 'block';
        } else {
            node.style.display = 'none';
        }
    }
</script>
</html>

猜你喜欢

转载自blog.csdn.net/jingtian678/article/details/85091842