本文實(shí)例為大家分享了jQuery實(shí)現(xiàn)菜單欄導(dǎo)航效果的具體代碼,供大家參考,具體內(nèi)容如下
10余年的相山網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。網(wǎng)絡(luò)營(yíng)銷推廣的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整相山建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。成都創(chuàng)新互聯(lián)從事“相山網(wǎng)站設(shè)計(jì)”,“相山網(wǎng)站推廣”以來,每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> *{ padding: 0px; margin: 0px; } #top{width: auto;height: 30px;background: #eee;position: relative;} #top li{float: left; text-align: center; width: 80px; height:30px; line-height:30px; list-style: none; } /*設(shè)置位置*/ .position{ position: absolute; border: 1px solid #ccc; top:30px; padding: 3px; font-size: 15px; display: none; } .shoucang{width: auto;left: 10px;} .sell{width: auto;left: 70px;} .customer{width: auto;left: 180px;} .bg{background-color: #DDA0DD;cursor: pointer;} </style> <script type="text/javascript" src="js/jquery-1.8.3.js" ></script> <script> $(function(){ $(".li1").hover(function(){ $(".shoucang").show();/*顯示收藏的菜單內(nèi)容*/ $(".customer,.sell").hide();/*隱藏其他的菜單內(nèi)容*/ },function(){ $(".shoucang").hide();/*鼠標(biāo)離開,收藏的菜單內(nèi)容隱藏*/ }); $(".li2").hover(function(){ $(".sell").show(); $(".customer,.shoucang").hide(); },function(){ $(".sell").hide(); }); $(".li3").hover(function(){ $(".customer").show(); $(".shoucang,.sell").hide(); },function(){ $(".customer").hide(); }); $("#top div").hover(function(){/*鼠標(biāo)放置在div位置上,顯示下拉菜單*/ $(this).show(); },function(){/*鼠標(biāo)離開在div位置上,隱藏下拉菜單*/ $(this).hide(); }); $(".sell p,.shoucang p,.customer p").bind("mouseover",function(){ $(this).addClass("bg"); }); $(".sell p,.shoucang p,.customer p").bind("mouseout",function(){ $(this).removeClass("bg"); }); }); </script> </head> <body> <div id="top"> <ul> <li class="li1">收藏夾</li> <li class="li2">賣家中心</li> <li class="li3">聯(lián)系客服</li> </ul> <div class="shoucang position"> <p>收藏的寶貝</p> <p>收藏的店鋪</p> </div> <div class="sell position"> <p>免費(fèi)開店</p> <p>已出售的報(bào)寶貝</p> <p>出售中的報(bào)寶貝</p> <p>賣家服務(wù)市場(chǎng)</p> </div> <div class="customer position"> <p>消費(fèi)者客服</p> <p>賣家客服</p> </div> </div> </body> </html>
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
當(dāng)前標(biāo)題:jQuery實(shí)現(xiàn)菜單欄導(dǎo)航效果
本文網(wǎng)址:http://jinyejixie.com/article2/psisoc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站、自適應(yīng)網(wǎng)站、關(guān)鍵詞優(yōu)化、云服務(wù)器、手機(jī)網(wǎng)站建設(shè)、動(dòng)態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)