zoukankan      html  css  js  c++  java
  • 简单的导航下拉菜单

    <html>
    <head>
    <title>打造下拉菜单</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <style>
    body,td { font-size:12px; font-family:宋体}
    a:link {  color: #ffffff; text-decoration: none}
    a:visited {  color: #ffffff; text-decoration: none}
    a:hover {  color: #ff9933; text-decoration: none}
    table {  border: #000000; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px}
    </style>
    <script language="JavaScript">
    <!--
    <!--
    function MM_reloadPage(init) {  //reloads the window if Nav4 resized
      if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
        document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
      else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
    }
    MM_reloadPage(true);
    // -->
    
    function MM_findObj(n, d) { //v4.0
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && document.getElementById) x=document.getElementById(n); return x;
    }
    
    function MM_showHideLayers() { //v3.0
      var i,p,v,obj,args=MM_showHideLayers.arguments;
      for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
        if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
        obj.visibility=v; }
    }
    //-->
    </script>
    </head>
    
    <body bgcolor="#CCCCCC" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" scroll=auto>
    <div id="title" style="position:absolute; left:8px; top:15px; 240px; height:15px; z-index:1; background-color: #006699; layer-background-color: #006699; border: 1px none #000000"> 
      <table width="480" cellspacing="0" cellpadding="2">
        <tr> 
          <td width="120" onMouseOver="MM_showHideLayers('menu1','','show')" onMouseOut="MM_showHideLayers('menu1','','hide')"><b><font color="#FFFFFF"><a href="#">■ 
            经典论坛</a></font></b> </td>
          <td width="120" onMouseOver="MM_showHideLayers('menu2','','show')" onMouseOut="MM_showHideLayers('menu2','','hide')"><b><font color="#FFFFFF"><a href="#">■ 
            天极网</a></font></b> </td>
          <td width="120" onMouseOver="MM_showHideLayers('menu2','','show')" onMouseOut="MM_showHideLayers('menu2','','hide')">&nbsp;</td>
          <td width="120" onMouseOver="MM_showHideLayers('menu2','','show')" onMouseOut="MM_showHideLayers('menu2','','hide')">&nbsp;</td>
        </tr>
      </table>
    </div>
    <div id="menu1" style="position:absolute; left:8px; top:34px; 120px; height:80px; z-index:2; background-color: #999966; layer-background-color: #999966; border: 1px none #000000; visibility: hidden" onMouseOver="MM_showHideLayers('menu1','','show')" onMouseOut="MM_showHideLayers('menu1','','hide')"> 
      <table width="100%" cellspacing="0" cellpadding="2" height="80">
        <tr> 
          <td>&nbsp;<a href="#">Dreamweaver 专栏</a></td>
        </tr>
        <tr> 
          <td>&nbsp;<a href="#">Fireworks 专栏</a></td>
        </tr>
        <tr> 
          <td>&nbsp;<a href="#">Flash 基本操作</a></td>
        </tr>
        <tr> 
          <td>&nbsp;<a href="#">Flash 5 Action</a></td>
        </tr>
      </table>
    </div>
    <div id="menu2" style="position:absolute; left:127px; top:34px; 120px; height:80px; z-index:2; background-color: #999966; layer-background-color: #999966; border: 1px none #000000; visibility: hidden" onMouseOver="MM_showHideLayers('menu2','','show')" onMouseOut="MM_showHideLayers('menu2','','hide')"> 
      <table width="100%" cellspacing="0" cellpadding="2" height="80">
        <tr> 
          <td>&nbsp;<a href="#">新闻</a>&nbsp;</td>
        </tr>
        <tr> 
          <td height="20">&nbsp;<a href="#">软件</a></td>
        </tr>
        <tr> 
          <td>&nbsp;<a href="#">硬件</a>&nbsp;</td>
        </tr>
        <tr> 
          <td>&nbsp;<a href="#">商城</a></td>
        </tr>
      </table>
    </div>
    
    
    </BODY>
    
    </html>
  • 相关阅读:
    jQuery小案例
    update-alternatives
    计算机网络备忘
    报文交换 (转自百度百科,方便以后复习)
    erlang supervisor simple_one_for_one实例
    erlang supervisor中启动普通的进程
    erlang四大behaviour之一gen_server(转载)
    用Doxygen+Graphviz生成函数调用流程图(转)
    selenium模块
    request模块
  • 原文地址:https://www.cnblogs.com/poissonnotes/p/2225531.html
Copyright © 2011-2022 走看看