欢迎光临
我们一直在努力

抛石头引玉:自制的Tab多标签导航栏。

建站超值云服务器,限时71元/月

三行三列tab标签,以iframe作为内容导航窗口。很粗糙了,见笑,如果哪位高手知道如何使整行标签全部移动的最好方法,请一定不忘贴出。

index.htm     //主文件

<!– by firefly , johnikis@sohu.com –>
<!– on may 29 , 2002 –>

<html>

<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<title>多标签模式菜单 – test v1.0</title>
<meta name="generator" content="microsoft frontpage 3.0">
<script language="jscript" src="activemenu.js"></script>
</head>

<body>

<p> </p>

<table border="0" cellspacing="0" cellpadding="0" align="center">
  <tr>
    <td width="33%"><img id="ai1" src="aiimg_1.gif" width="124" height="26" onclick="acticlick(1,1)" style="cursor:hand;" onmouseover="this.src=aiimg_2.gif" onmouseout="this.src=aiimg_1.gif"></td>
    <td width="33%"><img id="ai2" src="aiimg_3.gif" width="124" height="26" onclick="acticlick(1,2)" style="cursor:hand;" onmouseover="this.src=aiimg_4.gif" onmouseout="this.src=aiimg_3.gif"></td>
    <td width="34%"><img id="ai3" src="aiimg_5.gif" width="124" height="26" onclick="acticlick(1,3)" style="cursor:hand;" onmouseover="this.src=aiimg_6.gif" onmouseout="this.src=aiimg_5.gif"></td>
  </tr>
  <tr>
    <td width="100%" colspan="3">
<div>
<iframe id="ifet1" height="0" width="372" scrolling="auto" src="etext1.htm" frameborder="no"></iframe>
</div>
</td>
  </tr>

<!– 第二部分开始 –>

<blockquote>
  <tr>
    <td width="33%"><img id="ai4" src="aiimg_7.gif" width="124" height="26" onclick="acticlick(2,1)" style="cursor:hand;" onmouseover="this.src=aiimg_8.gif" onmouseout="this.src=aiimg_7.gif"></td>
    <td width="33%"><img id="ai5" src="aiimg_9.gif" width="124" height="26" onclick="acticlick(2,2)" style="cursor:hand;" onmouseover="this.src=aiimg_10.gif" onmouseout="this.src=aiimg_9.gif"></td>
    <td width="34%"><img id="ai6" src="aiimg_11.gif" width="124" height="26" onclick="acticlick(2,3)" style="cursor:hand;" onmouseover="this.src=aiimg_12.gif" onmouseout="this.src=aiimg_11.gif"></td>
  </tr>

  <tr>
    <td width="100%" colspan="3"><div>
<iframe id="ifet2" height="0" width="372" scrolling="auto" src="etext2.htm" frameborder="no"></iframe>
</div></td>
  </tr>
</blockquote>

<!– 第三部分开始 –>
  <tr>
    <td width="33%"><img id="ai7" src="aiimg_13.gif" width="124" height="26" onclick="acticlick(3,1)" style="cursor:hand;" onmouseover="this.src=aiimg_14.gif" onmouseout="this.src=aiimg_13.gif"></td>
    <td width="33%"><img id="ai8" src="aiimg_15.gif" width="124" height="26" onclick="acticlick(3,2)" style="cursor:hand;" onmouseover="this.src=aiimg_16.gif" onmouseout="this.src=aiimg_15.gif"></td>
    <td width="34%"><img id="ai9" src="aiimg_17.gif" width="124" height="26" onclick="acticlick(3,3)" style="cursor:hand;" onmouseover="this.src=aiimg_18.gif" onmouseout="this.src=aiimg_17.gif"></td>
  </tr>
  <tr>
    <td width="100%" colspan="3"><div id="etext1">
<iframe id="ifet3" width="372" height="0"  scrolling="auto" src="etext3.htm" frameborder="no"></iframe>
</div></td>
  </tr>
</table>
</body>
</html>

activemenu.js     //js引用文件

<!– by firefly , johnikis@sohu.com –>
<!– on may 29 , 2002 –>

function acticlick(rownum,colnum)
{
  var i;
  switch (rownum) {
    case 1:
      document.all("ifet1").style.height="160";
      document.all("ifet2").style.height="0";
      document.all("ifet3").style.height="0";
      for (i=1;i<10;i++) document.all("ai"+i).src="aiimg_"+(i*2-1)+".gif"
      switch (colnum) {
        case 1:
            document.all("ai1").src="aiimg_2.gif";
            document.all("ai2").src="aiimg_3.gif";
            document.all("ai3").src="aiimg_5.gif";
            document.all("ifet1").src="etext1.htm";
          break;
        case 2:
          document.all("ai1").src="aiimg_1.gif";
          document.all("ai2").src="aiimg_4.gif";
          document.all("ai3").src="aiimg_5.gif";
          document.all("ifet1").src="etext2.htm";
          break;
        case 3:
          document.all("ai1").src="aiimg_1.gif";
          document.all("ai2").src="aiimg_3.gif";
          document.all("ai3").src="aiimg_6.gif";
          document.all("ifet1").src="etext3.htm";
          break;
       }
       break;

    case 2:
      document.all("ifet1").style.height="0";
      document.all("ifet2").style.height="160";
      document.all("ifet3").style.height="0";
      for (i=1;i<10;i++) document.all("ai"+i).src="aiimg_"+(i*2-1)+".gif"
      switch (colnum) {
        case 1:
          document.all("ai4").src="aiimg_8.gif";
          document.all("ai5").src="aiimg_9.gif";
          document.all("ai6").src="aiimg_11.gif";
          document.all("ifet2").src="etext1.htm";
          break;
        case 2:
          document.all("ai4").src="aiimg_7.gif";
          document.all("ai5").src="aiimg_10.gif";
          document.all("ai6").src="aiimg_11.gif";
          document.all("ifet2").src="etext2.htm";
          break;
        case 3:
          document.all("ai4").src="aiimg_7.gif";
          document.all("ai5").src="aiimg_9.gif";
          document.all("ai6").src="aiimg_12.gif";
          document.all("ifet2").src="etext3.htm";
          break;
       }
       break;

    case 3:
      document.all("ifet1").style.height="0";
      document.all("ifet2").style.height="0";
      document.all("ifet3").style.height="160";
      for (i=1;i<10;i++) document.all("ai"+i).src="aiimg_"+(i*2-1)+".gif"
      switch (colnum) {
        case 1:
          document.all("ai7").src="aiimg_14.gif";
          document.all("ai8").src="aiimg_15.gif";
          document.all("ai9").src="aiimg_17.gif";
          document.all("ifet3").src="etext1.htm";
          break;
        case 2:
          document.all("ai7").src="aiimg_13.gif";
          document.all("ai8").src="aiimg_16.gif";
          document.all("ai9").src="aiimg_17.gif";
          document.all("ifet3").src="etext2.htm";
          break;
        case 3:
          document.all("ai7").src="aiimg_13.gif";
          document.all("ai8").src="aiimg_15.gif";
          document.all("ai9").src="aiimg_18.gif";
          document.all("ifet3").src="etext3.htm";
          break;
       }
       break;

   }      
}

//里面有三个iframe外部引用文件etext1(2,3).htm需自制。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 抛石头引玉:自制的Tab多标签导航栏。
分享到: 更多 (0)

相关推荐

  • 暂无文章