真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

CSS3中怎么創(chuàng)建一個(gè)動態(tài)菜單效果

本篇文章為大家展示了CSS3中怎么創(chuàng)建一個(gè)動態(tài)菜單效果,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、微信平臺小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了萬安免費(fèi)建站歡迎大家使用!

第一步:編輯菜單的HTML代碼

菜單包含三個(gè)列表項(xiàng),分別取名為“Menu1”、“Menu2”、“Menu3”。
 

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1.      

    •      

    •     

    • Menu1
    •      

    •     

    • Menu2
    •      

    •     

    • Menu3
    •      

         

  

  第二步:設(shè)置菜單的背景

在該步驟中,我們將把導(dǎo)航的背景設(shè)置為黑色。寬度、高度和內(nèi)邊距為可選項(xiàng),可以不設(shè)置。
 

CSS Code復(fù)制內(nèi)容到剪貼板

  1. .css3Menus {     

  2. background: #14080a;     

  3. width:506px;     

  4. height:260px;     

  5. padding:20px;     

  6. }  

如下圖:
CSS3中怎么創(chuàng)建一個(gè)動態(tài)菜單效果

第三步:利用border-radius,制作圓形導(dǎo)航。

該步中,我們會利用CSS3的一些酷的功能,尤其是border-radius ,將每個(gè)列表項(xiàng)的背景設(shè)置為黃色,形狀為圓形。 
 

CSS Code復(fù)制內(nèi)容到剪貼板

  1. ul {     

  2. list-style: none;     

  3. }     

  4.     

  5. li {     

  6. float:left;     

  7. font: 14px/10px Arial, Verdana, sans-serif;     

  8. color:#FFF;     

  9. background-color:#CCCC00;     

  10. width: 80px;     

  11. height: 80px;     

  12. padding:20px;     

  13. margin:0 30px 0 0;     

  14. -webkit-border-radius: 60px;     

  15. -moz-border-radius: 60px;     

  16. border-radius: 60px;     

  17. }  

菜單看起來呈下面樣子:
CSS3中怎么創(chuàng)建一個(gè)動態(tài)菜單效果

第四步:設(shè)置菜單的對齊方式

本步驟中,我們將為每個(gè)列表項(xiàng)設(shè)置特定的背景顏色與位置:
 

CSS Code復(fù)制內(nèi)容到剪貼板

  1. li#menu1 {     

  2. background-color: #00FFCC;     

  3. }     

  4. li#menu2 {     

  5. background-color: #CC9900;     

  6. margin-top:100px;     

  7. }     

  8. li#menu3 {     

  9. background-color: #33FF66;     

  10. margin-top:50px;     

  11. }  

現(xiàn)在菜單看起來呈下面樣子:
CSS3中怎么創(chuàng)建一個(gè)動態(tài)菜單效果

第五步:設(shè)置菜單中鏈接的對齊方式
 

CSS Code復(fù)制內(nèi)容到剪貼板

  1. li a {     

  2. color:#FFF;     

  3. text-decoration:none;     

  4. display:block;     

  5. width: 80px;     

  6. height: 45px; text-align: center;     

  7. padding:35px 0 0 0;     

  8. margin:0 40px 0 0;     

  9. -webkit-border-radius: 40px;     

  10. -moz-border-radius: 40px;     

  11. border-radius: 40px;     

  12. }     

  13. li#menu1 a {     

  14. background-color: #FF0000;     

  15. }     

  16. li#menu2 a {     

  17. background-color: #660033;     

  18. }     

  19. li#menu3 a {     

  20. background-color: #66CCCC;     

  21. }  

菜單現(xiàn)階段的樣子:

CSS3中怎么創(chuàng)建一個(gè)動態(tài)菜單效果

第六步:定義另一種效果,當(dāng)鼠標(biāo)懸浮在鏈接上時(shí)進(jìn)行展現(xiàn) 
 

CSS Code復(fù)制內(nèi)容到剪貼板

  1. li a:hover,     

  2. li a:focus,     

  3. li a:active {     

  4. width: 120px;     

  5. height:65px;     

  6. padding:55px 0 0 0;     

  7. margin:-20px 0 0 -20px;     

  8. -webkit-border-radius: 60px;     

  9. -moz-border-radius: 60px;     

  10. border-radius: 60px;     

  11. }  

菜單樣式如圖:
CSS3中怎么創(chuàng)建一個(gè)動態(tài)菜單效果

第七步:最后為導(dǎo)航增加動畫效果
 

CSS Code復(fù)制內(nèi)容到剪貼板

  1. li a:hover,     

  2. li a:focus,     

  3. li a:active {     

  4. -webkit-animation-name:bounce;     

  5. -webkit-animation-duration:1s;     

  6. -webkit-animation-iteration-count:4;     

  7. -webkit-animation-direction:alternate;     

  8. }     

  9. @-webkit-keyframes bounce{from{margin:0 40px 0 0;}     

  10. to{margin:120px 40px 0 0;}     

  11. }  

菜單所產(chǎn)生的動畫效果:
CSS3中怎么創(chuàng)建一個(gè)動態(tài)菜單效果

上述內(nèi)容就是CSS3中怎么創(chuàng)建一個(gè)動態(tài)菜單效果,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


文章名稱:CSS3中怎么創(chuàng)建一個(gè)動態(tài)菜單效果
網(wǎng)頁URL:http://weahome.cn/article/goeoid.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部