jQuery實現(xiàn)Meizu魅族官方網(wǎng)站的導航菜單效果
本文實例講述了jQuery實現(xiàn)Meizu魅族官方網(wǎng)站的導航菜單效果。分享給大家供大家參考。具體如下:
偶爾看到魅族官方網(wǎng)站,發(fā)現(xiàn)網(wǎng)站的導航菜單的效果很不錯就扣下來,倆字:給力。鼠標放到菜單上,菜單的下邊會有一條橫線在滑動。一直想找類似的效果學一下。結(jié)果,不是忘記有類似效果的網(wǎng)站的網(wǎng)址,就是壓根兒找不到。。又不知道怎么描述,今天總算碰到了,真給力。
運行效果截圖如下:

在線演示地址如下:
http://demo.jb51.net/js/2015/jquery-meizu-web-nav-menu-style-codes/
具體代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Meizu魅族導航菜單</title>
<script type="text/javascript" src="jquery1.3.2.js"></script>
<style>
div,h1,h2,h3,h4,p,form,label,input,textarea,img,span{margin:0;padding:0;}ul,li{list-style:none;padding:0;margin:0;}img{border:none;}
.csc_top{background:url(images/shopping_tab.jpg) 0 0 no-repeat;width:958px;height:45px;margin:0 auto;position:relative;z-index:101;}
.slideMenu{height:38px;}
li.current a{color:#00b5f7;cursor:pointer;}
li.current a:hover{color:#00b5f7;cursor:pointer;}
.lavaLampWithImage3 li a:hover,.lavaLampWithImage3 li a:active{border:none;color:#00B5F7;text-decoration:none;}
.lavaLampWithImage3 .sep{padding-top:13px;font-size:10px;color:#aeadad;float:left;height:20px;border-top:none;}
.lavaLampWithImage3{position:relative;height:28px;float:left;}
.lavaLampWithImage3 .current{color:#008ace;}
.lavaLampWithImage3 .current a{color:#008ace;}
.lavaLampWithImage3 li{float:left;list-style:none;padding-bottom:11px;}
.lavaLampWithImage3 li.back{background:url(images/b_slider.gif) center bottom no-repeat;width:120px;height:28px;z-index:8;position:absolute;}
.lavaLampWithImage3 li a{font:bold 14px arial;text-decoration:none;color:#303030;outline:none;text-align:center;top:6px;letter-spacing:0;z-index:10;display:block;float:left;height:28px;position:relative;overflow:hidden;padding:5px 20px 0 17px;font-family:"Microsoft Yahei",Arial,Helvetica,sans-serif,"����";font-weight:normal;font-size:13px;}
</style>
</head>
<body>
<div class="csc_top">
<div class="shead_left">
<ul id="1" class="lavaLampWithImage3">
<li class="current">
<a href="#" style="padding: 5px 30px 0;">Meizu</a>
</li>
<span class="sep">|</span>
<li >
<a href="#" style="padding: 5px 30px 0;">魅族</a>
</li>
<span class="sep">|</span>
<li>
<a href="#" style="padding: 5px 30px 0;">腳本之家</a>
</li>
</ul>
</div>
</div>
</div>
<script type="text/javascript" src="MZPub-CSC-0121.js"></script>
</body>
</html>
希望本文所述對大家的jQuery程序設(shè)計有所幫助。
相關(guān)文章
jQuery實現(xiàn)鼠標可拖動調(diào)整表格列寬度
這篇文章主要介紹了通過jQuery實現(xiàn)鼠標可拖動調(diào)整表格列寬度,需要的朋友可以參考下2014-05-05
jQuery EasyUI常用數(shù)據(jù)驗證匯總
這篇文章主要為大家詳細匯總了jQuery EasyUI常用數(shù)據(jù)驗證,介紹了validatebox()提供的自定義驗證,感興趣的小伙伴們可以參考一下2016-09-09
jQuery實現(xiàn)當拉動滾動條到底部加載數(shù)據(jù)的方法分析
這篇文章主要介紹了jQuery實現(xiàn)當拉動滾動條到底部加載數(shù)據(jù)的方法,結(jié)合實例形式分析了jQuery針對滾動事件的監(jiān)聽、響應(yīng)及數(shù)據(jù)加載相關(guān)操作技巧,需要的朋友可以參考下2019-01-01

