html5 css3網(wǎng)站菜單實(shí)現(xiàn)代碼
發(fā)布時間:2013-12-23 09:57:39 作者:佚名
我要評論

HTML5使用css3制作的一個菜單效果,大家運(yùn)行看效果吧
實(shí)現(xiàn)的難點(diǎn)在于:first-child,last-child 兩個選擇器,以后margin-left:-1px;的應(yīng)用,33%,34%寬度的技巧處理。
另外一個難點(diǎn)是:box-shadow:1px 0 0 #F1F1F1 inset; 的實(shí)現(xiàn)。
最后是:
復(fù)制代碼
代碼如下:background:-webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#b6b4b4));background:-moz-linear-gradient(top, #f9f9f9, #b6b4b4);background:-o-linear-gradient(top, #f9f9f9, #b6b4b4);background:linear-gradient(top, #f9f9f9, #b6b4b4);
復(fù)制代碼
代碼如下:<!doctype html>
<html xmlns="<a xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<title>html5,css3菜單</title>
<style type="text/css">
.jikey_demo{ width:80%; margin:0 auto; background:#f1f1f1;}
.news_info{margin-bottom:5px;border:1px solid #bbb;border-radius:5px;box-shadow:0 1px 0 #f1f1f1;}
.news_info a{display:inline-block;width:33%;height:26px;font-family:"微軟雅黑";line-height:26px;text-align:center;color:#555;border-right:1px solid #ccc;box-shadow:1px 0 0 #F1F1F1 inset;}
.news_info a:first-child{width:33%;box-shadow:none;border-radius:4px 0 0 4px;}
.news_info a:last-child{width:34%;border-right:none;margin-left:-2px;border-radius:0 4px 4px 0;}
.news_info a:hover, .news_info a.current{color:#208edd;background:-webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#b6b4b4));background:-moz-linear-gradient(top, #f9f9f9, #b6b4b4);background:-o-linear-gradient(top, #f9f9f9, #b6b4b4);background:linear-gradient(top, #f9f9f9, #b6b4b4);}
</style>
</head>
<body>
<div class="jikey_demo">
<nav class="news_info"><a class="current" href="/news/">新聞1</a><a class="" href="/guide/">新聞2</a><a class="" href="/review/">新聞3</a></nav>
</div>
</body>
</html>
相關(guān)文章
jQuery+CSS3漂亮簡潔橙色的網(wǎng)站二級下拉導(dǎo)航菜單
一款漂亮簡潔的網(wǎng)站二級下拉導(dǎo)航菜單特效2014-04-14純CSS3實(shí)現(xiàn)的華麗網(wǎng)站下拉菜單導(dǎo)航特效源碼
是一段實(shí)現(xiàn)了鼠標(biāo)放在導(dǎo)航時,該導(dǎo)航會下拉出相應(yīng)內(nèi)容的二級菜單的效果代碼,本段代碼適應(yīng)于所有網(wǎng)頁使用,有興趣的朋友們可以前來下載使用2015-03-12一款純CSS3代碼實(shí)現(xiàn)星系軌道旋轉(zhuǎn)網(wǎng)站菜單特效源碼
一款純CSS3代碼實(shí)現(xiàn)星系軌道旋轉(zhuǎn)網(wǎng)站菜單特效源碼,其中圓球和光效是圖片,主要運(yùn)動了css的animation,transform,transition屬性。需要的朋友前來下載源碼2016-05-12