本篇文章為大家展示了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)容到剪貼板
第二步:設(shè)置菜單的背景
在該步驟中,我們將把導(dǎo)航的背景設(shè)置為黑色。寬度、高度和內(nèi)邊距為可選項(xiàng),可以不設(shè)置。
CSS Code復(fù)制內(nèi)容到剪貼板
.css3Menus {
background: #14080a;
width:506px;
height:260px;
padding:20px;
}
如下圖:
第三步:利用border-radius,制作圓形導(dǎo)航。
該步中,我們會利用CSS3的一些酷的功能,尤其是border-radius ,將每個(gè)列表項(xiàng)的背景設(shè)置為黃色,形狀為圓形。
CSS Code復(fù)制內(nèi)容到剪貼板
ul {
list-style: none;
}
li {
float:left;
font: 14px/10px Arial, Verdana, sans-serif;
color:#FFF;
background-color:#CCCC00;
width: 80px;
height: 80px;
padding:20px;
margin:0 30px 0 0;
-webkit-border-radius: 60px;
-moz-border-radius: 60px;
border-radius: 60px;
}
菜單看起來呈下面樣子:
第四步:設(shè)置菜單的對齊方式
本步驟中,我們將為每個(gè)列表項(xiàng)設(shè)置特定的背景顏色與位置:
CSS Code復(fù)制內(nèi)容到剪貼板
li#menu1 {
background-color: #00FFCC;
}
li#menu2 {
background-color: #CC9900;
margin-top:100px;
}
li#menu3 {
background-color: #33FF66;
margin-top:50px;
}
現(xiàn)在菜單看起來呈下面樣子:
第五步:設(shè)置菜單中鏈接的對齊方式
CSS Code復(fù)制內(nèi)容到剪貼板
li a {
color:#FFF;
text-decoration:none;
display:block;
width: 80px;
height: 45px; text-align: center;
padding:35px 0 0 0;
margin:0 40px 0 0;
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
}
li#menu1 a {
background-color: #FF0000;
}
li#menu2 a {
background-color: #660033;
}
li#menu3 a {
background-color: #66CCCC;
}
菜單現(xiàn)階段的樣子:
第六步:定義另一種效果,當(dāng)鼠標(biāo)懸浮在鏈接上時(shí)進(jìn)行展現(xiàn)
CSS Code復(fù)制內(nèi)容到剪貼板
li a:hover,
li a:focus,
li a:active {
width: 120px;
height:65px;
padding:55px 0 0 0;
margin:-20px 0 0 -20px;
-webkit-border-radius: 60px;
-moz-border-radius: 60px;
border-radius: 60px;
}
菜單樣式如圖:
第七步:最后為導(dǎo)航增加動畫效果
CSS Code復(fù)制內(nèi)容到剪貼板
li a:hover,
li a:focus,
li a:active {
-webkit-animation-name:bounce;
-webkit-animation-duration:1s;
-webkit-animation-iteration-count:4;
-webkit-animation-direction:alternate;
}
@-webkit-keyframes bounce{from{margin:0 40px 0 0;}
to{margin:120px 40px 0 0;}
}
菜單所產(chǎn)生的動畫效果:
上述內(nèi)容就是CSS3中怎么創(chuàng)建一個(gè)動態(tài)菜單效果,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。