亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

下滑線跟隨導(dǎo)航

??? 2018-12-23 12:11:22 162
????: <!DOCTYPE html><html> <head>  <title>下滑線跟隨導(dǎo)航</title>  <meta charset="utf-8"/>  <script type="text/javascript" src=&

 <!DOCTYPE html>

<html>

 <head>

  <title>下滑線跟隨導(dǎo)航</title>

  <meta charset="utf-8"/>

  <script type="text/javascript" src="jquery.js"></script>

    <style type="text/css">

  *{padding:0;margin:0;}

  ul {list-style: none;z-index:20;position:relative;font-size: 15px;}

  li {float:left;cursor:pointer;width:100px;height: 30px;text-align:center;line-height:30px;color: #fff;font-weight: bold;}

  .menu{width:500px;position:relative;margin:20px auto;height:32px;box-shadow: 0 2px 20px #000;background: #AF3434;border-radius:3px }

  </style>

  <script type="text/javascript">

    $(function(){

      $('li').hover(

        function(){

         $x=parseInt($(this).attr('name'))*100

         $('.block').stop().animate({left:$x+'px'},300)

        },

        function(){

          $('.block').stop().animate({left:'0px'},300)

        }   

        )

    })

  </script>

 </head>

 <body>

   <div class="menu">

   <ul>

     <li name="0">首頁(yè)</li>

     <li name="1">新聞資訊</li>

     <li name="2">產(chǎn)品系列</li>

     <li name="3">服務(wù)團(tuán)隊(duì)</li>

     <li name="4">聯(lián)系我們</li>

   </ul>

  <div class="block" style="z-index:10;width:100px;height:2px;background:#fff;position:absolute;top:30px;"></div>


 </div>

 

 </body>

</html>


?? ???:天蓬老師?? ??:2018-12-23 13:35:27
???? ??:js語(yǔ)句后面最好加上“;”,有利于以后的團(tuán)隊(duì)開(kāi)發(fā)。

??? ??

?? ??