JS 鼠标经过显示二级菜单

内容摘要
这篇文章主要为大家详细介绍了JS 鼠标经过显示二级菜单的简单示例,具有一定的参考价值,可以用来参考一下
文章正文

这篇文章主要为大家详细介绍了JS 鼠标经过显示二级菜单的简单示例,具有一定的参考价值,可以用来参考一下。

不错的鼠标经过显示二级菜单js特效效果,对此感兴趣的朋友,看看idc笔记做的技术笔记。
经测试代码如下:


<a href="http://" onm ouseover="showit(0)">学堂</a> | <a href="#" onm ouseover="showit(1)">播放器之家</a><br>
<div id="describe" style="width:600px;height:40px; margin-top:10px;" onm ouseover="clear_delayhide()" onm ouseout="resetit(event)"></div>
<script language="JavaScript1.2">
/**
 * 鼠标经过显示二级菜单
 *
 * @param 
 * @arrange (www.idcnote.com)
 **/
var submenu=new Array()
submenu[0]='<b><a href="http://www.512pic.com/">512pic</a> | <a href="#">播放器之家</a> | <a href="http://sc.512pic.net/">素材之家</a> | <a href="http://mingzi.512pic.net/">个性名字网</a> | <a href="http://office.512pic.net/">Office之家</a></b>'
submenu[1]='<b><a href="http://www.512pic.com/">512pic</a> | <a href="http://play.512pic.net">播放器之家</a> | <a href="http://sc.512pic.net/">素材之家</a> | <a href="http://mingzi.512pic.net/">个性名字网</a></b>'
var delay_hide=500
var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""
function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}
function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide)
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)
}
function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}
function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
</script>

// 来自:512笔记(www.512pic.com) 

注:关于JS 鼠标经过显示二级菜单的简单示例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!