JS+CSS實現另類帶提示效果的豎向導航菜單
更新時間:2015年10月15日 09:50:13 作者:企鵝
這篇文章主要介紹了JS+CSS實現另類帶提示效果的豎向導航菜單,可實現鼠標滑過菜單項在下方固定區(qū)域顯示對應提示文字的效果,涉及鼠標事件控制頁面元素樣式的相關技巧,需要的朋友可以參考下
本文實例講述了JS+CSS實現另類帶提示效果的豎向導航菜單。分享給大家供大家參考。具體如下:
這是一款JS+CSS打造另類帶提示的豎向導航菜單,覺得挺不錯,只是美工水平有限,有興趣的朋友就請繼續(xù)完善吧。
運行效果截圖如下:

在線演示地址如下:
http://demo.jb51.net/js/2015/js-css-alert-txt-nav-menu-demo/
具體代碼如下:
<html>
<head>
<title>帶提示的豎向導航菜單</title>
<style type="text/css">
#coolmenu{
border: 1px solid black;
width: 160px;
background-color: #E6E6E6;
}
#coolmenu a{
font: bold 13px Verdana;
padding: 2px;
padding-left: 4px;
display: block;
width: 100%;
color: black;
text-decoration: none;
border-bottom: 1px solid black;
}
html>body #coolmenu a{
width: auto;
}
#coolmenu a:hover{
background-color: black;
color: white;
}
#tabledescription{
width: 100%;
height: 3em;
padding: 2px;
filter:alpha(opacity=0);
-moz-opacity:0;
}
</style>
<script type="text/javascript">
var baseopacity=0
function showtext(thetext){
if (!document.getElementById)
return
textcontainerobj=document.getElementById("tabledescription")
browserdetect=textcontainerobj.filters? "ie" : typeof textcontainerobj.style.MozOpacity=="string"? "mozilla" : ""
instantset(baseopacity)
document.getElementById("tabledescription").innerHTML=thetext
highlighting=setInterval("gradualfade(textcontainerobj)",50)
}
function hidetext(){
cleartimer()
instantset(baseopacity)
}
function instantset(degree){
if (browserdetect=="mozilla")
textcontainerobj.style.MozOpacity=degree/100
else if (browserdetect=="ie")
textcontainerobj.filters.alpha.opacity=degree
else if (document.getElementById && baseopacity==0)
document.getElementById("tabledescription").innerHTML=""
}
function cleartimer(){
if (window.highlighting) clearInterval(highlighting)
}
function gradualfade(cur2){
if (browserdetect=="mozilla" && cur2.style.MozOpacity<1)
cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.2, 0.99)
else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=20
else if (window.highlighting)
clearInterval(highlighting)
}
</script>
</head>
<body>
<div id="coolmenu">
<a href="#" onMouseover="showtext('精品腳本代碼下載!')" onMouseout="hidetext()">開始吧</a>
<a href="#" onMouseover="showtext('常用特效收集與發(fā)布')" onMouseout="hidetext()">網頁特效</a>
<a href="#" onMouseover="showtext('網站地圖索引')" onMouseout="hidetext()">資源分類</a>
<a href="#" onMouseover="showtext('最新更新的資源')" onMouseout="hidetext()">最新更新</a>
<a href="#" onMouseover="showtext('網站最熱的下載')" onMouseout="hidetext()">下載排行</a>
<div id="tabledescription"></div>
</div>
</body>
</html>
希望本文所述對大家的JavaScript程序設計有所幫助。
您可能感興趣的文章:
- JS無限級導航菜單實現方法
- AngularJS+Bootstrap3多級導航菜單的實現代碼
- 基于JavaScript實現熔巖燈效果導航菜單
- js+div+css下拉導航菜單完整代碼分享
- JS中用三種方式實現導航菜單中的二級下拉菜單
- JS 實現導航菜單中的二級下拉菜單的幾種方式
- JavaScript實戰(zhàn)之帶收放動畫效果的導航菜單
- ABP框架中導航菜單的使用及JavaScript API獲取菜單的方法
- 原生js和jquery分別實現橫向導航菜單效果
- javascript HTML+CSS實現經典橙色導航菜單
- 以JavaScript來實現WordPress中的二級導航菜單的方法
- JS+CSS實現簡單的二級下拉導航菜單效果
- JS實現移動端可折疊導航菜單(現代都市風)
相關文章
bootstrap+jQuery 實現下拉菜單中復選框全選和全不選效果
這篇文章主要給大家介紹了關于利用bootstrap+jQuery 實現下拉菜單中復選框全選和全不選效果的相關資料,文中給出了完整的示例代碼供大家參考學習,對大家具有一定的參考學習價值,需要的朋友下面來一起看看吧。2017-06-06
javascript 靜態(tài)對象和構造函數的使用和公私問題
靜態(tài)對象和構造函數的使用區(qū)別 平常我們會經常使用JSON形式,或者var obj=function(){}亦或function(){}這么幾種對象的構建辦法,有時會認為這是等價的辦法,然而他們還有不同。2010-03-03

