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

在線演示地址如下:
http://demo.jb51.net/js/2015/js-css-alert-txt-nav-menu-demo/
具體代碼如下:
<html>
<head>
<title>帶提示的豎向?qū)Ш讲藛?lt;/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()">網(wǎng)頁特效</a>
<a href="#" onMouseover="showtext('網(wǎng)站地圖索引')" onMouseout="hidetext()">資源分類</a>
<a href="#" onMouseover="showtext('最新更新的資源')" onMouseout="hidetext()">最新更新</a>
<a href="#" onMouseover="showtext('網(wǎng)站最熱的下載')" onMouseout="hidetext()">下載排行</a>
<div id="tabledescription"></div>
</div>
</body>
</html>
希望本文所述對大家的JavaScript程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- JS無限級導(dǎo)航菜單實(shí)現(xiàn)方法
- AngularJS+Bootstrap3多級導(dǎo)航菜單的實(shí)現(xiàn)代碼
- 基于JavaScript實(shí)現(xiàn)熔巖燈效果導(dǎo)航菜單
- js+div+css下拉導(dǎo)航菜單完整代碼分享
- JS中用三種方式實(shí)現(xiàn)導(dǎo)航菜單中的二級下拉菜單
- JS 實(shí)現(xiàn)導(dǎo)航菜單中的二級下拉菜單的幾種方式
- JavaScript實(shí)戰(zhàn)之帶收放動畫效果的導(dǎo)航菜單
- ABP框架中導(dǎo)航菜單的使用及JavaScript API獲取菜單的方法
- 原生js和jquery分別實(shí)現(xiàn)橫向?qū)Ш讲藛涡Ч?/a>
- javascript HTML+CSS實(shí)現(xiàn)經(jīng)典橙色導(dǎo)航菜單
- 以JavaScript來實(shí)現(xiàn)WordPress中的二級導(dǎo)航菜單的方法
- JS+CSS實(shí)現(xiàn)簡單的二級下拉導(dǎo)航菜單效果
- JS實(shí)現(xiàn)移動端可折疊導(dǎo)航菜單(現(xiàn)代都市風(fēng))
相關(guān)文章
-
JavaScript 俄羅斯方塊游戲?qū)崿F(xiàn)方法與代碼解釋
這篇文章主要介紹了JavaScript 俄羅斯方塊游戲,結(jié)合實(shí)例形式詳細(xì)分析了JavaScript 俄羅斯方塊游戲原理、實(shí)現(xiàn)步驟及相關(guān)操作注意事項(xiàng),需要的朋友可以參考下 2020-04-04
-
LayUi使用switch開關(guān),動態(tài)的去控制它是否被啟用的方法
今天小編就為大家分享一篇LayUi使用switch開關(guān),動態(tài)的去控制它是否被啟用的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧 2019-09-09
-
微信小程序?qū)崿F(xiàn)列表頁的點(diǎn)贊和取消點(diǎn)贊功能
這篇文章主要為大家詳細(xì)介紹了微信小程序?qū)崿F(xiàn)列表頁的點(diǎn)贊和取消點(diǎn)贊功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下 2018-11-11
-
JS button按鈕實(shí)現(xiàn)submit按鈕提交效果
今天在使用表單是同時使用POST更新、刪除操作。然而form表單的 submit 且一旦提交則全部提交,所以想到的實(shí)現(xiàn)方法就是 使用button實(shí)現(xiàn),怎么實(shí)現(xiàn)呢?下面小編給大家分享JS button按鈕實(shí)現(xiàn)submit按鈕提交效果,感興趣的朋友參考下吧 2016-11-11
-
BOM系列第一篇之定時器setTimeout和setInterval
這篇文章主要介紹了BOM系列第一篇之定時器setTimeout和setInterval 的相關(guān)資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下 2016-08-08
最新評論
本文實(shí)例講述了JS+CSS實(shí)現(xiàn)另類帶提示效果的豎向?qū)Ш讲藛巍7窒斫o大家供大家參考。具體如下:
這是一款JS+CSS打造另類帶提示的豎向?qū)Ш讲藛危X得挺不錯,只是美工水平有限,有興趣的朋友就請繼續(xù)完善吧。
運(yùn)行效果截圖如下:
在線演示地址如下:
http://demo.jb51.net/js/2015/js-css-alert-txt-nav-menu-demo/
具體代碼如下:
<html> <head> <title>帶提示的豎向?qū)Ш讲藛?lt;/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()">網(wǎng)頁特效</a> <a href="#" onMouseover="showtext('網(wǎng)站地圖索引')" onMouseout="hidetext()">資源分類</a> <a href="#" onMouseover="showtext('最新更新的資源')" onMouseout="hidetext()">最新更新</a> <a href="#" onMouseover="showtext('網(wǎng)站最熱的下載')" onMouseout="hidetext()">下載排行</a> <div id="tabledescription"></div> </div> </body> </html>
希望本文所述對大家的JavaScript程序設(shè)計(jì)有所幫助。
- JS無限級導(dǎo)航菜單實(shí)現(xiàn)方法
- AngularJS+Bootstrap3多級導(dǎo)航菜單的實(shí)現(xiàn)代碼
- 基于JavaScript實(shí)現(xiàn)熔巖燈效果導(dǎo)航菜單
- js+div+css下拉導(dǎo)航菜單完整代碼分享
- JS中用三種方式實(shí)現(xiàn)導(dǎo)航菜單中的二級下拉菜單
- JS 實(shí)現(xiàn)導(dǎo)航菜單中的二級下拉菜單的幾種方式
- JavaScript實(shí)戰(zhàn)之帶收放動畫效果的導(dǎo)航菜單
- ABP框架中導(dǎo)航菜單的使用及JavaScript API獲取菜單的方法
- 原生js和jquery分別實(shí)現(xiàn)橫向?qū)Ш讲藛涡Ч?/a>
- javascript HTML+CSS實(shí)現(xiàn)經(jīng)典橙色導(dǎo)航菜單
- 以JavaScript來實(shí)現(xiàn)WordPress中的二級導(dǎo)航菜單的方法
- JS+CSS實(shí)現(xiàn)簡單的二級下拉導(dǎo)航菜單效果
- JS實(shí)現(xiàn)移動端可折疊導(dǎo)航菜單(現(xiàn)代都市風(fēng))
相關(guān)文章
JavaScript 俄羅斯方塊游戲?qū)崿F(xiàn)方法與代碼解釋
這篇文章主要介紹了JavaScript 俄羅斯方塊游戲,結(jié)合實(shí)例形式詳細(xì)分析了JavaScript 俄羅斯方塊游戲原理、實(shí)現(xiàn)步驟及相關(guān)操作注意事項(xiàng),需要的朋友可以參考下2020-04-04LayUi使用switch開關(guān),動態(tài)的去控制它是否被啟用的方法
今天小編就為大家分享一篇LayUi使用switch開關(guān),動態(tài)的去控制它是否被啟用的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-09-09微信小程序?qū)崿F(xiàn)列表頁的點(diǎn)贊和取消點(diǎn)贊功能
這篇文章主要為大家詳細(xì)介紹了微信小程序?qū)崿F(xiàn)列表頁的點(diǎn)贊和取消點(diǎn)贊功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下2018-11-11JS button按鈕實(shí)現(xiàn)submit按鈕提交效果
今天在使用表單是同時使用POST更新、刪除操作。然而form表單的 submit 且一旦提交則全部提交,所以想到的實(shí)現(xiàn)方法就是 使用button實(shí)現(xiàn),怎么實(shí)現(xiàn)呢?下面小編給大家分享JS button按鈕實(shí)現(xiàn)submit按鈕提交效果,感興趣的朋友參考下吧2016-11-11BOM系列第一篇之定時器setTimeout和setInterval
這篇文章主要介紹了BOM系列第一篇之定時器setTimeout和setInterval 的相關(guān)資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2016-08-08