CSS jquery圓角帶陰影的導航選單程式碼分享

shanshuiboy發表於2018-06-05
  • CSS jquery製作實現的導航選單效果,使用者互動做的不錯,當滑鼠放在選單上時,選單背景懸停豪華,仔細看,本款選單的文字還有陰影效果,選單項的修飾同樣有陰影效果,這種陰影讓本款選單的立體感有著很不錯的視覺效果。本款選單適合做網站的一級導航,並沒有設計二級子選單,企業站、公司站比較適合使用。

點選(此處)摺疊或開啟

  1. <html>
  2. <head>
  3. <title>導航條效果- www.codesc.net </title>
  4. <style>
  5. .navigation{
  6.     position:relative;
  7.     margin:0 auto;
  8.     width:915px;
  9. }
  10. ul.menu{
  11.     list-style:none;
  12.     font-family:"微軟雅黑";
  13.     border-top:1px solid #bebebe;
  14.     margin:0px;
  15.     padding:0px;
  16.     float:left;
  17. }
  18. ul.menu li{
  19.     float:left;
  20. }
  21. ul.menu li a{
  22.     text-decoration:none;
  23.     background:#2d83db url(http://www.codesc.net/jscode/demoimg/201602/bgMenu.png) repeat-x top left;
  24.     padding:15px 0px;
  25.     width:128px;
  26.     color:#333333;
  27.     float:left;
  28.     text-shadow: 0 1px 1px #fff;
  29.     text-align:center;
  30.     border-right:1px solid #a1a1a1;
  31.     border-left:1px solid #e8e8e8;
  32.     font-weight:bold;
  33.     font-size:15px;
  34.     -moz-box-shadow: 0 1px 3px #555;
  35.     -webkit-box-shadow: 0 1px 3px #555;
  36. }
  37. ul.menu li a.hover{
  38.     background-image:none;
  39.     color:#fff;
  40.     text-shadow: 0 -1px 1px #000;
  41. }
  42. ul.menu li a.first{
  43.     -moz-border-radius:0px 0px 0px 10px;
  44.     -webkit-border-bottom-left-radius: 10px;
  45.     border-left:none;
  46. }
  47. ul.menu li a.last{
  48.     -moz-border-radius:0px 0px 10px 0px;
  49.     -webkit-border-bottom-right-radius: 10px;
  50. }
  51. ul.menu li span{
  52.     width:64px;
  53.     height:64px;
  54.     background-repeat:no-repeat;
  55.     background-color:transparent;
  56.     position:absolute;
  57.     z-index:-1;
  58.     top:80px;
  59.     cursor:pointer;
  60. }
  61. </style>
  62. </head>
  63. <style>
  64. body { margin:0px; padding:0px; background-color:#f0f0f0;}
  65. </style>
  66. <body>
  67. <div class="navigation">
  68.   <ul class="menu" id="menu">
  69.     <li><span class="ipod"></span><a href="" class="first">網站原始碼</a></li>
  70.     <li><span class="video_camera"></span><a href="">CSS特效</a></li>
  71.     <li><span class="television"></span><a href="">選單模板</a></li>
  72.     <li><span class="monitor"></span><a href="">圓角選單</a></li>
  73.     <li><span class="toolbox"></span><a href="">選單程式碼</a></li>
  74.     <li><span class="telephone"></span><a href="">手機選單</a></li>
  75.     <li><span class="print"></span><a href="" class="last">選單動畫</a></li>
  76.   </ul>
  77. </div>
  78. <script type="text/javascript" src=""></script>
  79. <script type="text/javascript">
  80. $(function() {
  81.     var d=1000;
  82.     $('#menu span').each(function(){
  83.         $(this).stop().animate({
  84.             'top':'-17px'
  85.         },d+=250);
  86.     });
  87.     $('#menu > li').hover(
  88.     function () {
  89.         var $this = $(this);
  90.         $('a',$this).addClass('hover');
  91.         $('span',$this).stop().animate({'top':'40px'},300).css({'zIndex':'10'});
  92.     },
  93.     function () {
  94.         var $this = $(this);
  95.         $('a',$this).removeClass('hover');
  96.         $('span',$this).stop().animate({'top':'-17px'},800).css({'zIndex':'-1'});
  97.     }
  98. );
  99. });
  100. </script>
  101. </body>
  102. </html>
引用自原文:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/357485/viewspace-2155674/,如需轉載,請註明出處,否則將追究法律責任。

相關文章