这篇文章主要为大家详细介绍了JS 鼠标经过显示二级菜单的简单示例,具有一定的参考价值,可以用来参考一下。
不错的鼠标经过显示二级菜单js特效效果,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。<br><strong>经测试代码如下:</strong> 经测试代码如下:
<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 (512.笔记) www.q1010.com
**/
var submenu=new Array()
submenu[0]='<b><a href="http://www.q1010.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.q1010.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>
// 来自:四海网(www.q1010.com)
本文来自:http://www.q1010.com/174/569-0.html
注:关于JS 鼠标经过显示二级菜单的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:二级菜单
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。