分享
 
 
 

多级动感的带下一级的导航菜单

王朝other·作者佚名  2008-05-31
窄屏简体版  字體: |||超大  

运行看到效果后,可以点向下箭头展开表格,点向上按钮可以收缩表格!希望对您有用!

<!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" />

<title>www.knowsky.com</title>

<script language="javascript">

function tablecollapse()

{

/* Variables */

var collapseClass='footcollapse';

var collapsePic='http://www.knowsky.com/upfiles/20070619/20070619214338_arrow_up.gif';

var expandPic='http://www.knowsky.com/upfiles/20070619/20070619214348_arrow_down.gif';

var initialCollapse=true;

// loop through all tables

var t=document.getElementsByTagName('table');

var checktest= new RegExp("(^|\\s)" + collapseClass + "(\\s|$)");

for (var i=0;i<t.length;i++)

{

// if the table has not the right class, skip it

if(!checktest.test(t[i].className)){continue;}

// make the footer clickable

t[i].getElementsByTagName('tfoot')[0].onclick=function()

{

// loop through all bodies of this table and show or hide

// them

var tb=this.parentNode.getElementsByTagName('tbody');

for(var i=0;i<tb.length;i++)

{

tb[i].style.display=tb[i].style.display=='none'?'':'none';

}

// change the image accordingly

var li=this.getElementsByTagName('img')[0];

li.src=li.src.indexOf(collapsePic)==-1?collapsePic:expandPic;

}

// if the bodies should be collapsed initially, do so

if(initialCollapse)

{

var tb=t[i].getElementsByTagName('tbody');

for(var j=0;j<tb.length;j++)

{

tb[j].style.display='none';

}

}

// add the image surrounded by a dummy link to allow keyboard

// access to the last cell in the footer

var newa=document.createElement('a');

newa.href='#';

newa.onclick=function(){return false;}

var newimg=document.createElement('img');

newimg.src=initialCollapse?expandPic:collapsePic;

var tf=t[i].getElementsByTagName('tfoot')[0];

var lt=tf.getElementsByTagName('td')[tf.getElementsByTagName('td').length-1];

newa.appendChild(newimg);

lt.insertBefore(newa,lt.firstChild);

}

}

// run tablecollapse when the page loads

window.onload=tablecollapse;

</script>

<style type="text/css">

body{

font-family:Arial,Sans-Serif;

font-size:90%;

background:#cc9;

}

#boundary{

background:#f8f8f8;

padding:2em;

width:40em;

}

h1{

font-family:"Trebuchet MS",Sans-serif;

text-transform:uppercase;

color:#696;

font-size:120%;

}

table.footcollapse{

width:30em;

}

table.footcollapse caption{

font-size:120%;

text-transform:uppercase;

text-align:left;

padding:.5em 1em;

}

table.footcollapse th{

text-align:left;

}

table.footcollapse,table.footcollapse th,table.footcollapse th

{

border:none;

border-collapse:collapse;

}

table.footcollapse thead th

{

width:10em;

border-style:solid;

border-width:1px;

border-color:#cff #69c #69c #cff;

background:#9cf;

padding:2px 10px;

}

table.footcollapse tfoot th,

table.footcollapse tfoot td

{

border-style:solid;

border-width:1px;

border-color:#9cf #369 #369 #9cf;

background:#69c;

padding:2px 10px;

}

table.footcollapse tbody{

background:#ddd;

}

table.footcollapse tbody td{

padding:5px 10px;

border:1px solid #999;

}

table.footcollapse tbody th{

padding:2px 10px;

border:1px solid #999;

border-left:none;

}

table.footcollapse tbody tr.odd{

background:#ccc;

}

table.footcollapse tfoot td img{

border:none;

vertical-align:bottom;

padding-left:10px;

float:right;

}

</style>

</head>

<body>

<table summary="CDs I listened to recently" class="footcollapse">

<caption>My recent CDs</caption>

<thead>

<tr>

<th>Title</th>

<th>Artist</th>

<th>Quality</th>

</tr>

</thead>

<tfoot>

<tr>

<th>Total</th>

<td colspan="2">5 CDs</td>

</tr>

</tfoot>

<tbody>

<tr>

<th>Front 242</th>

<td>Front By Front</td>

<td>Quite OK</td>

</tr>

<tr class="odd">

<th>Miss Kittin</th>

<td>i.com</td>

<td>good buy</td>

</tr>

<tr>

<th>Die Fantastischen Vier</th>

<td>Viel</td>

<td>Nice comeback</td>

</tr>

<tr class="odd">

<th>Nine Inch Nails</th>

<td>With Teeth</td>

<td>Oh yes, finally a new one</td>

</tr>

<tr>

<th>Garbage</th>

<td>Bleed like me</td>

<td>Needs more listening</td>

</tr>

</tbody>

</table>

<table summary="DVDs I watched recently" class="footcollapse">

<caption>My recent DVDs</caption>

<thead>

<tr>

<th>Title</th>

<th>Quality</th>

</tr>

</thead>

<tfoot>

<tr>

<th>Total</th>

<td>5 DVDs</td>

</tr>

</tfoot>

<tbody>

<tr>

<th>Star Trek TNG Season 7</th>

<td>They lost it</td>

</tr>

<tr class="odd">

<th>Big Fish</th>

<td>Wonderful Tale</td>

</tr>

<tr>

<th>Closer</th>

<td>I want my time back!</td>

</tr>

<tr class="odd">

<th>Hot Shots</th>

<td>Always worth it</td>

</tr>

<tr>

<th>The Party</th>

<td>A shame there is not more Sellers</td>

</tr>

</tbody>

</table>

</body>

</html>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有