首頁  >  文章  >  web前端  >  js css實作tab選單切換效果的方法_javascript技巧

js css實作tab選單切換效果的方法_javascript技巧

WBOY
WBOY原創
2016-05-16 16:19:041187瀏覽

本文實例講述了js css實作tab選單切換效果的方法。分享給大家供大家參考。具體實作方法如下:

index.css如下:

複製程式碼 程式碼如下:
* { 
    margin: 0px; 
    padding: 0px; 

body { 
    width: 600px; 
    margin: 0 auto; 
    background-color: silver; 

 
#contanier { 
    background-color: yellow; 
    width: 600px;height: 400px; 

 
#tabNavi { 
    width: 600px;height: 30px; 
    background-color: #00bfff; 
    text-decoration: none; 
    list-style-type: none; 

 
#tabNavi li { 
    float: left; 
    margin-right: 7px; 
     background-color: #008b8b; 
    color: white; 
    cursor: pointer; 
    width: 60px; 
    height: 28px; 
    line-height: 30px; 
    text-align: center; 

#content { 
    width: 600px;height: 370px; 
    background-color: white; 
}

index.html如下:

複製程式碼 程式碼如下:
 
 
 
 
    js實現tab選單動態切換效果 
     
     
 
     
 
       
     
           
     
       
     
     

    希望本文所述對大家的javascript程式設計有所幫助。

    陳述:
    本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn