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

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

original 2019-01-11 17:40:01 289
abstrait:<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <title>導(dǎo)航欄下滑線跟隨</title>    <script src="https://cdn.bootcss

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

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

    <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.js"></script>


    <style>

   *{padding: 0;margin: 0;}

   ul{list-style: none;z-index: 20;position: relative;}

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

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

    </style>


<script>

  $(function(){

    $('li').hover(

       function(){

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

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

        },


         function(){


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

         }   

        

    )



  })



</script>

</head>

<body>

 <div class="menu">

 <ul>

<li name="0">666</li>

<li name="1">667</li>

<li name="2">668</li>

 </ul>

   

 

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

 </div>


</div> 



</body>

</html>


Professeur correcteur:天蓬老師Temps de correction:2019-01-11 22:41:34
Résumé du professeur:margin: 50px 0px 0px 20px; 以后凡是0之后, 不要添加單位了,例如 px

Notes de version

Entrées populaires