gaufeo 发表于 2007-4-27 11:19:11

***页面特效***始终沉在网页底部的导航菜单

把下列代码加到网页的<body></body>标签之间 从google下载我的照片管理软件
要完此效果需要三个步骤

第一步:把如下代码加入到<head>区域中

<script language="javascript">
<!--
function stat(){
var a = pageyoffset+window.innerheight-document.bar.document.height-15
document.bar.top = a
settimeout('stat()',2)
}
function fix(){
nome=navigator.appname
if(nome=='netscape'){
stat()
}
else{
var a=document.body.scrolltop+document.body.clientheight-document.all.bar.offsetheight+15

bar.style.top = a
}}
//-->
</script>


第二步:把如下代码加入到<body>区域中

<span id="bar" style="position:absolute; left:68px; top:455px; width:614px; height:45px; z-index:9" >
<table border="1" hspace="1" cellpadding="1" bordercolor="#000000" bgcolor="#ffffff">
<tr align="center">
<td width="190"> <a href="index.html">回到首页 </a></td>
<td width="147"> <a href="new.htm">最新更新</a></td>
<td width="96"> <a href="">时尚动态</a></td>
<td width="158"> <a href="" target="_blank">聊神侃王</a>
</td>
</tr>
</table>
</span>

</body>


第三步:把“onload='fix()' onscroll="fix()" onresize="fix()"”加在<body>标记里
例如: <body onload='fix()' onscroll="fix()" onresize="fix()">
      










--------------------------------------

http://www.huoyue.com.cn 活跃网,活跃人群的论坛,访问活跃网,将给您带来意想不到的收获,还可以免费为您开论坛,让您免费拥有与朋友、网友交流的论坛。你是年轻人吗?你活跃你就上!
页: [1]
查看完整版本: ***页面特效***始终沉在网页底部的导航菜单