js实现导航栏nav吸顶效果

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>吸顶效果</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        header {
            line-height: 150px;
            text-align: center;
            height: 150px;
            background-color: greenyellow;
        }

        nav {
            width: 100%;
            line-height: 50px;
            text-align: center;
            height: 50px;
            background-color: deepskyblue;
            transition: 2s;
        }

        .sty {
            background: rgba(255, 255, 255, .6);
            position: fixed;
            top: 0;
            left: 0;
        }

        section {
            line-height: 1500px;
            font-size: 80px;
            height: 1500px;
            text-align: center;
            background-color: #ccc;
        }

        footer {
            line-height: 300px;
            text-align: center;
            height: 300px;
            background-color: red;
        }
    </style>
</head>

<body>
    <header>这是头部</header>
    <nav>这是导航栏</nav>
    <section>这是内容区</section>
    <footer>这是尾部</footer>
    <script>

        var nav = document.querySelector("nav");    // 获取元素
        window.onscroll = function () {            //绑定滚动事件函数  注意点:必须有滚动条才能触发
             //获取document的滚动距离    ||兼容写法
            var scrollTop = document.documentElement.scrollTop || document.body.scrollTop; 
            if (scrollTop >= 300) {     //当滚动距离>=300时,让nav动态设置class为sty的样式
                // console.log(scrollTop);
                nav.className = "sty";      
            } else {
                nav.className = "";     //清除动态设置的样式
            }
        }

    </script>
</body>

</html>
										效果图

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值