溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

CSS jquery圓角帶陰影的導(dǎo)航菜單代碼分享

發(fā)布時(shí)間:2020-08-11 08:52:30 來(lái)源:ITPUB博客 閱讀:149 作者:shanshuiboy 欄目:移動(dòng)開(kāi)發(fā)
  • CSS jquery制作實(shí)現(xiàn)的導(dǎo)航菜單效果,用戶交互做的不錯(cuò),當(dāng)鼠標(biāo)放在菜單上時(shí),菜單背景懸停豪華,仔細(xì)看,本款菜單的文字還有陰影效果,菜單項(xiàng)的修飾同樣有陰影效果,這種陰影讓本款菜單的立體感有著很不錯(cuò)的視覺(jué)效果。本款菜單適合做網(wǎng)站的一級(jí)導(dǎo)航,并沒(méi)有設(shè)計(jì)二級(jí)子菜單,企業(yè)站、公司站比較適合使用。

點(diǎn)擊(此處)折疊或打開(kāi)

  1. <html>
  2. <head>
  3. <title>導(dǎo)航條效果- 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">網(wǎng)站源碼</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="">手機(jī)菜單</a></li>
  75.     <li><span class="print"></span><a href="" class="last">菜單動(dòng)畫(huà)</a></li>
  76.   </ul>
  77. </div>
  78. <script type="text/javascript" src="http://www.codesc.net/ajaxjs/jquery-1.9.1.min.js"></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>
引用自原文:http://www.codesc.net/jscss/3332.shtml

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI