右侧打开居中的下拉菜单第二版

稿件来源: 阳光企业网站管理系统   撰稿作者: 太阳光   发表日期: 2011-10-02   阅读次数: 89   查看权限: 游客查看

昨天制作了右侧居中下拉菜单,今天改进了一点。

第一版本:右侧打开居中的下拉菜单

第二版本技术结构图如左:先画一个红色外框div。左边绿色是一级菜单,右边红色虚线是一个position:absolute的div,里面是多个ul组成的二级菜单。结构相对简单了很多。

首先当鼠标经过大分类时,触发鼠标函数onmouseover 显示相应的二级菜单,并统计此菜单下多少个li连接,以此来推断需要红色虚线DIV需要margin-top的值,来达到居中效果。

并级大分类绿色框绑定一个鼠标离开onmouseout触发事件,即隐藏菜单。

 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>右侧居中菜单第二版-太阳光设计</title>
</head>
<style type="text/css">
#menu_ul{
  margin:0;padding:0;
  border:2px solid #E62D70;
  width:120px;
  float:left;
}
#menu_ul li{
	line-height:20px;
	text-align:left;
	color:#990033;
	cursor:pointer;
  font-weight:bold;
	background:url(http://www.scscms.com/other/right_menu/cat_bg.jpg) no-repeat left center;
	height:20px;overflow:hidden;
	margin:0;padding:0 0 0 25px;
	list-style-type:none;
	border-bottom:1px solid #ddd;
}

.list_u{
	margin:0;padding:0;
	background:url(http://www.scscms.com/other/right_menu/u_bg.gif) no-repeat left center;
	border-right:2px solid #E62D70;
}
.list_u li{
	line-height:20px;
	text-align:left;
	height:20px;
	background-color:#fff;
	margin-left:23px;padding:0 0 0 5px;
	list-style-type:none;
	border-bottom:1px solid #ddd;
}
.list_u li a{
	font-size:14px;
	font-weight:bold;
	color:#990033;
	font-size:14px;
	text-decoration:none
	}
</style>
<body>
<div style="border:1px solid red;padding:200px"><input name="df" type="text" size="50" /></div>
<div style="margin-left:200px;">
  <ul id="menu_ul">
    <li>阳光设计</li>
    <li>阳光设计</li>
    <li>阳光设计</li>
    <li>阳光设计</li>
  </ul>
  <div id="cat_td" style="width:150px;position:absolute;margin-top:0px;margin-left:-23px">
<%
Call list(5)
Call list(10)
Call list(15)
Call list(30)
%>
  </div>
</div>

<%
Sub list(n)
Dim i
Response.write "<ul class=""list_u"" style=""display:none"">"&vbcrlf
For i=0 To n
	If i=0 Then
	Response.write "<li style=""border-top:2px solid #E62D70"">"
	ElseIf i=n Then
	Response.write "<li style=""border-bottom:2px solid #E62D70"">"
	Else
	Response.write "<li>"
	End If
	Response.write "<a href=""http://www.scscms.com"" target=""_blank"">太阳光设计</a></li>"&vbcrlf
Next
Response.write "</ul>"
End Sub
%>
<script>
var i_show = 0;
var cat_td = document.getElementById("cat_td");
var cat_ul = cat_td.getElementsByTagName("ul");
var men_ul = document.getElementById("menu_ul");
var men_li = men_ul.getElementsByTagName("li");
for(var i=0;i<cat_ul.length;i++){
  men_li[i].onmouseover = (function(n) {
    return function () {
      showtd(n);
    }
  })(i);
	cat_ul[i].onmouseover=function() {
		this.style.display="block";
	}
}
men_ul.onmouseout = function(){
	cat_ul[i_show].style.display="none";
}
function showtd(n){
	for(var i=0;i<cat_ul.length;i++){
		if(n!=i)
			cat_ul[i].style.display="none";
		else
			cat_ul[n].style.display="block";
	}
	var i_n=cat_ul[n].getElementsByTagName("li").length;
	cat_td.style.marginTop=-(i_n/2-0.5-n)*21+"px";
	i_show=n;
}
</script>
</body>
</html>

  显示效果

关键词: 下拉菜单,二级下拉菜单,css菜单   编辑时间: 2011-10-03

  • 感到高兴

    0

    高兴
  • 感到支持

    0

    支持
  • 感到搞笑

    0

    搞笑
  • 感到不解

    0

    不解
  • 感到谎言

    0

    谎言
  • 感到枪稿

    0

    枪稿
  • 感到震惊

    0

    震惊
  • 感到无奈

    0

    无奈
  • 感到无聊

    0

    无聊
  • 感到反对

    0

    反对
  • 感到愤怒

    0

    愤怒
0%(0)
0%(0)
共有0 条评论 发言请遵守【相关规定

网友评论

会员头像
发 表同步腾讯微博    验证码:  点击更新请先登陆
  • 暂无评论
关闭模块文章图片 article Pictrue
  • 我的妈妈爸爸
  • 基于koa2+mysql+vue2.0+Element阳光内容管理系统
  • 代码覆盖率工具 Istanbul 入门教程
  • 全栈工程师的武器——MEAN
  • 9款超炫的 CSS3 复选框(Checkbox)
  • 微信开发在线翻译功能
  • CSS3那些不为人知的高级属性
  • 给easyui的datebox添加清空事件
  • flash写字效果
  • kendoUI系列教程之DropDownList下拉菜单
  • kendoUI系列教程之datetimepicker日期时间选择
  • kendoUI系列教程之datepicker日期选择
  • kendoUI系列教程之combobox下拉列表框
  • kendoUI系列教程之colorpicker
  • kendoUI系列教程之calendar日历表
  • kendoUI系列教程之autocomplete自动补齐