码迷,mamicode.com
首页 > Web开发 > 详细

网页吸顶

时间:2018-08-14 21:03:39      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:charset   win   round   element   text   static   lan   pos   html   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        *{margin:0;padding:0;}
        #header{
            width: 100%;
            height: 200px;
        }

        ul,li{list-style: none;}
        #nav{
            width: 100%;
            height: 80px;
            background: #000;
        }
        #nav>ul>li{
            float: left;
            text-align: center;
            line-height: 80px;
            color: #fff;
            width: 80px;
        }
    </style>
</head>
<body style="height:3000px;">
    <div id="header"></div>
    <div id="nav">
        <ul>
            <li>首页</li>
            <li>文档</li>
            <li>我的</li>
            <li>设置</li>
        </ul>
    </div>
</body>
</html>
<script>
    var oNav = document.getElementById("nav");
    window.onscroll = function () {
        var sTop = document.documentElement.scrollTop || document.body.scrollTop;
        if(sTop>=200){
            oNav.style.position = "fixed";
            oNav.style.top = 0;
        }else{
            oNav.style.position = "static";
        }
    }

</script>

网页吸顶

标签:charset   win   round   element   text   static   lan   pos   html   

原文地址:https://www.cnblogs.com/ngdty/p/9477461.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!