当前位置:编程学习 > JS >>

半透明蓝色调水平下拉导航条,很漂亮

一个半透明的水平排行的导航菜单,支持二级下拉,蓝色风格,鼠标放上带有动画展开的效果,很不错,很漂亮。不过有点不爽的地方就是代码比较乱,而且用了JS去输出菜单,这样修改起来比较不方便,有时间的可以好好优化一下。
答案:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
BODY {
 FONT-SIZE: 12px; MARGIN: 0px;BACKGROUND-COLOR: #131d30
}
A:link {
 COLOR: #7ea9bf; TEXT-DECORATION: none
}
A:visited {
 COLOR: #7ea9bf; TEXT-DECORATION: none
}
A:hover {
 COLOR: #ffffff; TEXT-DECORATION: underline
}
A:active {
 COLOR: #ffffff; TEXT-DECORATION: none
}
.Defautl-Navigation {
 FONT-SIZE: 12px; FLOAT: left; COLOR: #7ea9bf; LINE-HEIGHT: 23px; HEIGHT: 23px; TEXT-ALIGN: center
}
</style>
<SCRIPT language=javascript>
var f=0;
var y=0;
var div_obj
function over(obj){
 div_obj=obj
 _f=0;
 y=0;
 document.getElementById(obj).innerHTML="";
 document.getElementById(obj).style.width="0px";
 document.getElementById(obj).style.height="1px";
 document.getElementById(obj).style.display="";
 timerDIV();
}
function out(obj){
 obj.style.display="none";
}
function Tout(){
document.getElementById(div_obj).style.display="none";
}
function Tover(){
 document.getElementById(div_obj).style.display="";
}
function timerDIV(){
 if( _f >= 140){
  objy();
  return ;
 }
 else{
  _f=_f+10;
  document.getElementById(div_obj).style.width=_f+"px";
  window.setTimeout(timerDIV,1);
 }
}
function objy(){
 if(y >= 150){/*高度*/
  var str="<div style=\"width:150px;height:auto;float:left;font-size:12px;margin:6px;line-height:20px\"><a href=\"/\">&#9830;ASP</a><br/>  <font style=\"color:#7EA9BF;font-size:11px;\">&#9830;</font> <a href=\"/\" style=\"font-size:11px;\">PHP</a><br/>  <font style=\"color:#7EA9BF;font-size:11px;\">&#9830;</font> <a href=\"/\" style=\"font-size:11px\">AJAX</a><br/>  <font style=\"color:#7EA9BF;font-size:11px;\">&#9830;</font> <a href=\"/\" style=\"font-size:11px\">&#9830;JAVA</a><br/><a href=\"/\">&#9830;EXTJS</a><br /><a href=\"/\">&#9830;JQUERY</a><br/><\/div>";
  document.getElementById(div_obj).innerHTML=str
  return ;
 }
 else{
  y+=6;
  document.getElementById(div_obj).style.height=y+"px"; 
  window.setTimeout(objy,1);
 }
}
</SCRIPT>
<title>JS导航效果</title>
</HEAD>
<BODY>
<DIV class=Default-top>
 <DIV style="BORDER: #51789b 1px solid; width:500px;HEIGHT:23px; margin:20px auto; position:relative;">
  <DIV class=Defautl-Navigation style="WIDTH: 60px"><A href="#">源码首页&#8711;</A></DIV>
  <DIV class=Defautl-Navigation style="WIDTH: 10px">|</DIV>
  <DIV class=Defautl-Navigation style="WIDTH: 70px; CURSOR: pointer"><A 
   onMouseOver="over('two')" onmouseout=out(two) href="#">精品源码&#8711;</A>
  </DIV>
  <DIV class=Defautl-Navigation style="WIDTH: 10px">|</DIV>
  <DIV class=Defautl-Navigation style="WIDTH: 80px"><A href="/">
   最新更新</A></DIV>
  <DIV class=Defautl-Navigation style="WIDTH: 10px">|</DIV>
  <DIV class=Defautl-Navigation style="WIDTH: 50px"><A href="/other/top100.shtml">
   下载排行</A></DIV>
  <DIV id=two style="overflow:hidden;BORDER: #51789b 2px solid;DISPLAY: none; FILTER: alpha(Opacity=70); LEFT:300px; FLOAT:left; WIDTH: 1px; POSITION:absolute; TOP: 14px; left:80px; HEIGHT: 1px; BACKGROUND-COLOR: #444; -moz-opacity: 0.7"  onmousemove=Tover() onmouseout=Tout()>No Content
  </DIV>
 </DIV>
</DIV>
</BODY>
</HTML>

上一个:爆炸式菜单,点击后展开
下一个:QQ菜单可折叠,JS+CSS很漂亮

CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,