以下内容为程序代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<head>
<FCK:meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>弹性导航菜单</title>
<style type="text/css">
body, ul, ol, dl, dt, dd, h1, h2, h3, h4, h5, p, form { padding: 0; margin: 0; }
li { list-style: none; }
img { border: 0; }
body { font-family: Arial; background: #fff;}
#header { width: 960px; height: 107px; margin: 0 auto 12px; position: relative; }
#header h1 { padding-top: 15px; float: left; }
#header ul { height: 44px; position: absolute; right: 0; bottom: 0; }
#header .normal, #header .active { float: left; width: 88px; height: 44px; position: relative; z-index: 1; }
#header .normal a, #header .active a { float: left; width: 88px; height: 44px; line-height: 44px; text-align: center; text-decoration: none; font-size: 14px; font-weight: bold; }
#header .active a { color: #fff; }
#header .normal a { color: #999; }
#btn_bg { width: 88px; height: 44px; background: #fb2347;); position: absolute; overflow:hidden; left: 608px; bottom: 0; z-index: 2; }
#btn_bg ul { width: 528px; left:-176px; position:absolute; }
</style>
<script type="text/javascript">
var away;
window.onload=function()
{
var odiv=document.getElementById("btn_bg");
var oul=odiv.getElementsByTagName("ul")[0];
var oli=document.getElementById("header").getElementsByTagName("ul")[0].getElementsByTagName("li");
var i=0;
for(i=0;i<oli.length;i++)
{
oli[i].index=i;
oli[i].onmouseover=function()
{
away=432+88*this.index;
menuInterval();
};
};
}
var timer=null;
function menuInterval()
{
if(timer)
{
clearInterval(timer);
}
timer=setInterval(menuMove, 30);
}
var step=0;
var l=0;
function menuMove()
{
var odiv=document.getElementById("btn_bg");
var oul=odiv.getElementsByTagName("ul")[0];
step+=(away-odiv.offsetLeft)/10;
step=step*0.78;
l=parseInt(odiv.offsetLeft+step);
odiv.style.left=l;
oul.style.left=-l+432;;
}
</script>
</head>
<body>
<div id="header">
<h1 title="IT世纪网"><a href="" _fcksavedurl="">更多网页特效代码</a></h1>
<ul>
<li class="normal"><a href="" _fcksavedurl="">首页</a></li>
<li class="normal"><a href="" _fcksavedurl="">网页特效</a></li>
<li class="normal"><a href="" _fcksavedurl="">模板下载</a></li>
<li class="normal"><a href="" _fcksavedurl="">商业源码</a></li>
<li class="normal"><a href="" _fcksavedurl="">素材光盘</a></li>
<li class="normal"><a href="" _fcksavedurl="">电子教程</a></li>
</ul>
<div id="btn_bg">
<ul>
<li class="normal"><a href="" _fcksavedurl="">首页</a></li>
<li class="normal"><a href="" _fcksavedurl="">网页特效</a></li>
<li class="normal"><a href="" _fcksavedurl="">模板下载</a></li>
<li class="normal"><a href="" _fcksavedurl="">商业源码</a></li>
<li class="normal"><a href="" _fcksavedurl="">素材光盘</a></li>
<li class="normal"><a href="" _fcksavedurl="">电子教程</a></li>
</ul>
</div>
</div>
</body>
</html>