簡単にjs懸濁ナビの効果を実現します。


本論文の実例はjs懸濁ナビの具体的なコードを共有しています。参考にしてください。具体的な内容は以下の通りです。

<head>
 <meta charset="UTF-8">
 <title>    </title>
 <style>
  * {
   margin: 0px;
   padding: 0px;
  }
  ul li{
   list-style: none;
  }
  body{
   height: 2000px;
  }
  #top{
   height: 300px;
   width: 100%;
   background-color: red;
  }
  #nav{
   height: 50px;
   line-height: 50px;
   width: 100%;
   background-color: pink; 
  }
  #nav ul{
   width: 1200px;
   margin: 0 auto;
  }
  #nav ul li{
   float: left;
   width: 164px;
   text-align: center;
  }
 </style>
</head>
<body>
 <div id="top">
    
 </div>
 <div id="nav">
  <ul>
   <li>  </li>
   <li>  </li>
   <li>  </li>
   <li>  </li>
   <li>  </li>
   <li>  </li>
   <li>  </li>
  </ul>
 </div>
</body>
<script>
 var ad = document.getElementById("nav")
 window.onscroll = function(){
  var _top = document.body.scrollTop || document.documentElement.scrollTop;//  
  if(_top>=300){
   ad.style.position = "fixed";
   ad.style.top = 0 +"px";
  }else{
   ad.style.position = "absolute";
   ad.style.top = 300+"px";
  }
 }
</script>
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。