<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.top-nav{font-size: 14px; font-weight: bold; list-style: none; }
.top-nav li {float: left; margin-right: 1px; }
.top-nav li a{line-height: 34px; text-decoration: none; background-color: #3f240e; color: #fff; display: block; width: 80px; text-align: center; }
/*二级菜单*/
.top-nav ul {list-style: none; display: none; padding: 0; position: absolute; height: 0; overflow: hidden;}
.top-nav li a:hover { background-color: #e54; }
.note {background-color: #e54; display: block;}
</style>
<script>
window.onload = function () {
var Lis = document.getElementsByTagName('li');
for (var i = 0; i < Lis.length; i++) {
Lis[i].onmouseover = function () {
var u = this.getElementsByTagName('ul')[0];
if (u != undefined) {
u.style.display = "block";
ChangeH(u.id,1);
};
}
Lis[i].onmouseleave = function () {
var u = this.getElementsByTagName('ul')[0];
if (u != undefined) {
ChangeH(u.id,-1);
};
}
};
}
function ChangeH (id,count) {
var ulList = document.getElementById(id);
var h = ulList.offsetHeight;
h += count;
if (count > 0) {
if (h <= 34) {
ulList.style.height = h + "px";
setTimeout("ChangeH('" + id + "',1)",10);
} else {
return ;
}
} else {
if (h > 0) {
ulList.style.height = h + "px";
setTimeout("ChangeH('" + id + "',-1)",10);
} else {
ulList.style.display = "none";
return ;
}
}
}
// function AddH (id) {
// var ulList = document.getElementById(id);
// var h = ulList.offsetHeight;
// h += 1;
// if (h<=42) {
// ulList.style.height = h + "px";
// setTimeout("AddH('" + id + "')",10);
// } else {
// return;
// }
// }
// function SubH (id) {
// var ulList = document.getElementById(id);
// var h = ulList.offsetHeight;
// h -= 1;
// if (h > 0) {
// ulList.style.height = h + "px";
// setTimeout("SubH('" + id + "')",10);
// } else {
// ulList.style.display = "none";
// return ;
// }
// }
</script>
</head>
<body>
<ul class="top-nav">
<li><a href=""><span class="note">首页</span></a></li>
<li><a href="">课程</a></li>
<li><a href="">学习中心+</a>
<ul id="munUL">
<li><a href="">前端+</a>
<!-- <ul>
<li><a href="">JavaScript</a></li>
<li><a href="">CSS</a></li>
<li><a href="">jquery</a></li>
</ul> -->
</li>
<li><a href="">手机+</a>
<!-- <ul>
<li><a href="">IOS</a></li>
<li><a href="">WP</a></li>
<li><a href="">ANDROID</a></li>
</ul> -->
</li>
<li><a href="">后台</a></li>
</ul>
</li>
<li><a href="">关于我们</a></li>
<li><a href="">这是什么</a></li>
</ul>
</body>
</html>