|
|
| 边框式导航菜单 |
| 整理:Cnwshow.Com 来源:Internet 整理时间:2008-2-17 |
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>边框式导航菜单</title>
<style>
.menulines{
border:1px solid white;
}
.menulines a{
text-decoration:none;
color:#000000;
}
</style>
<script language="JavaScript1.2">
function borderize(what,color){
what.style.borderColor=color
}
function borderize_on(e){
if (document.all)
source3=event.srcElement
else if (document.getElementById)
source3=e.target
if (source3.className=="menulines"){
borderize(source3,"black")
}
else{
while(source3.tagName!="TABLE"){
source3=document.getElementById? source3.parentNode : source3.parentElement
if (source3.className=="menulines")
borderize(source3,"black")
}
}
}
function borderize_off(e){
if (document.all)
source4=event.srcElement
else if (document.getElementById)
source4=e.target
if (source4.className=="menulines")
borderize(source4,"white")
else{
while(source4.tagName!="TABLE"){
source4=document.getElementById? source4.parentNode : source4.parentElement
if (source4.className=="menulines")
borderize(source4,"white")
}
}
}
</script>
</head>
<body>
<table border="0" width="120" cellspacing="0" cellpadding="0" onMouseover="borderize_on(event)" onMouseout="borderize_off(event)">
<tr><td width="100%" bgcolor="#804040" height="20" align="center"><b><font size="2" color="#FFFFFF">导航菜单</font></b></td></tr>
<tr><td width="100%" bgcolor="#D3ABAB" height="20" align="center" class="menulines"><a href="http://www.cnwshow.com" target="_blank"><font face="宋体" size="2">中国个人网页秀</font></a></td></tr>
<tr><td width="100%" bgcolor="#D3ABAB" height="20" align="center" class="menulines"><a href="http://www.google.cn" target="_blank"><font face="宋体" size="2">google</font></a></td></tr>
<tr><td width="100%" bgcolor="#D3ABAB" height="20" align="center" class="menulines"><a href="http://www.sina.com.cn" target="_blank"><font face="宋体" size="2">新浪</font></a></td></tr>
<tr><td width="100%" bgcolor="#D3ABAB" height="20" align="center" class="menulines"><a href="http://www.baidu.com" target="_blank"><font face="宋体" size="2">百度</font></a></td></tr>
<tr><td width="100%" bgcolor="#D3ABAB" height="20" align="center" class="menulines"><a href="http://www.163.com" target="_blank"><font face="宋体" size="2">网易</font></a></td></tr>
</table>
</body>
</html>
|
|
|
|
|
|