C3製作導覽列分割線及立體風格,c3製作導覽列分割

來源:互聯網
上載者:User

C3製作導覽列分割線及立體風格,c3製作導覽列分割

//首先寫一個導覽列樣式

.nav{
    width:560px;
    height: 50px;
    font:bold 0/50px Arial;
    text-align:center;
    margin:40px auto 0;
       background: #f65f57;
       border-radius:10px;/*製作圓*/
       color:#F16153;
       box-shadow:0px 5px 0px #B64B41;
     

  }
 //導覽列轉動樣式
  .nav a{
    display: inline-block;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;//轉動速度
  }
  .nav a:hover{
    -webkit-transform:rotate(20deg);
    -moz-transform:rotate(20deg);
    -o-transform:rotate(20deg);
    -ms-transform:rotate(20deg);
    transform:rotate(20deg);//轉動角度
  }

  .nav li{
    position:relative;
    display:inline-block;
    padding:0 16px;
    font-size: 13px;
    text-shadow:1px 2px 4px rgba(0,0,0,.5);//文字陰影
    list-style: none outside none;
  }


  /*使用虛擬元素製作導航清單項目分隔線*/
  .nav li::before,.nav li::after{
     content:"";
     position:absolute;
     top:14px;
     height: 25px;
     width: 1px;
   }
   .nav li::after{
     right: 0;
     background: -moz-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,.2) 50%, rgba(255,255,255,0));
     background: -webkit-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,.2) 50%, rgba(255,255,255,0));
     background: -o-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,.2) 50%, rgba(255,255,255,0));
     background: -ms-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,.2) 50%, rgba(255,255,255,0));
     background: linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,.2) 50%, rgba(255,255,255,0));
   }
   .nav li::before{
     left: 0;
     background: -moz-linear-gradient(top, #ff625a, #9e3e3a 50%, #ff625a);
     background: -webkit-linear-gradient(top, #ff625a, #9e3e3a 50%, #ff625a);
     background: -o-linear-gradient(top, #ff625a, #9e3e3a 50%, #ff625a);
     background: -ms-linear-gradient(top, #ff625a, #9e3e3a 50%, #ff625a);
     background: linear-gradient(top, #ff625a, #9e3e3a 50%, #ff625a);
   }
        /*刪除第一項和最後一項導航分隔線*/
  .nav li:last-child:after{
         width:0px;
            height:0px;
  }
  .nav a,
  .nav a:hover{
    color:#fff;
    text-decoration: none;
  }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.