|
一、效果圖

鼠標滑過Menu,即Show提示信息。
二、實現(xiàn)步驟
1、CSS代碼
復制代碼 代碼如下:
menuBarHolder { width: 730px; height:45px; background-color:#000; color:#fff; font-family:Arial; font-size:14px; margin-top:20px;}
#menuBarHolder ul{ list-style-type:none; display:block;}
#container { margin-top:100px;}
#menuBar li{ float:left; padding:15px; height:16px; width:50px; border-right:1px solid #ccc; }
#menuBar li a{color:#fff; text-decoration:none; letter-spacing:-1px; font-weight:bold;}
.menuHover { background-color:#999;}
.firstchild { border-left:1px solid #ccc;}
.menuInfo { cursor:hand; background-color:#000; color:#fff;
width:74px; font-size:11px;height:100px; padding:3px; display:none;
position:absolute; margin-left:-15px; margin-top:-15px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
-khtml-border-radius-bottomright: 5px;
-khtml-border-radius-bottomleft: 5px;
border-radius-bottomright: 5px;
border-radius-bottomleft: 5px;
}
menuBarHolder: 菜單Menu的固定容器,寬度=730px。
menuInfo:控制提示信息的展示與否。
2、HTML代碼
復制代碼 代碼如下:
<div id="menuBarHolder">
<ul id="menuBar">
<li class="firstchild"><a href="Javascript:#">Home</a>
<div class="menuInfo">I am some text about the home section</div></li>
<li><a href="Javascript:#">Services</a>
<div class="menuInfo">I am some text about the services section</div></li>
<li><a href="Javascript:#">Clients</a>
<div class="menuInfo">I am some text about the clients section</div></li>
<li><a href="Javascript:#">Portfolio</a>
<div class="menuInfo">I am some text about the portfolio section</div></li>
<li><a href="Javascript:#">About</a>
<div class="menuInfo">I am some text about the about section</div></li>
<li><a href="Javascript:#">Blog</a>
<div class="menuInfo">I am some text about the blog section</div></li>
<li><a href="Javascript:#">Follow</a>
<div class="menuInfo">I am some text about the follow section</div></li>
<li><a href="Javascript:#">Contact</a>
<div class="menuInfo">I am some text about the contact section</div></li>
</ul>
</div>
UI LI元素:列表元素。
DIV元素:提示內(nèi)容信息。
3、Javascript代碼
復制代碼 代碼如下:
$(document).ready(function()
{
$('#menuBar li').click(function()
{
var url = $(this).find('a').attr('href');
document.location.href = url;
});
$('#menuBar li').hover(function()
{
$(this).find('.menuInfo').slideDown();
},
function()
{
$(this).find('.menuInfo').slideUp();
});
});
click()、 hover():給Li元素綁定單擊事件和鼠標滑過事件。
find()函數(shù):搜索所有與指定表達式匹配的元素。這個函數(shù)是找出正在處理的元素的后代元素的好方法。
slideDown(speed, [callback]):通過高度變化(向下增大)來動態(tài)地顯示所有匹配的元素,在顯示完成后可選地觸發(fā)一個回調(diào)函數(shù)。
slideUp(speed, [callback]):通過高度變化(向上減小)來動態(tài)地隱藏所有匹配的元素,在隱藏完成后可選地觸發(fā)一個回調(diào)函數(shù)。
[Ctrl+A 全選 注:如需引入外部Js需刷新才能執(zhí)行]
JavaScript技術(shù):Jquery+CSS 創(chuàng)建流動導航菜單 Fluid Navigation,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。