一般来说,后台管理系统的登录后页面就是系统的主页,这个主页的显示效果是不变的,就是在这个页面上有导航按钮和导航树,仅仅变化的是主面板上的一个iframe。这就是比较传统的做法,也比较简单。我们沿用这一习惯,稍微添加一些效果。首先来看一下页面框架:
Home Page LOGO后台管理系统欢迎 Nan Lei 使用本系统安全退出
页面元数据的声明就不多说了,页面背景我们仍然使用渐变的恬静的蓝色。在header中我们设置有Logo位置,title位置,menu位置和user_info位置。其中的menu下会设置详细的菜单信息。那么对应的CSS为:
* { background: none repeat scroll 0 0 transparent; border: 0 none; margin: 0; padding: 0; vertical-align: baseline; } body{ min-height:600px; min-width:1280px; overflow-y:hidden; } #wrapper { background-image: -moz-linear-gradient(top,#77D1F6, #2F368F); background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #77D1F6),color-stop(1, #2F368F)); font-family: "lucida Grande",Tahoma,Arial; font-size: 12px; overflow: hidden; height:100%; width:100%; height:100%; } #header { float: left; height: 62px; position: relative; width: 100%; z-index: 10; text-align:center; } #logo { float: left; height: 38px; line-height:38px; vertical-align:middle; margin: 15px 0 0 1%; width: 60px; } #title { float: left; height: 38px; line-height:38px; vertical-align:middle; margin: 15px 0 0 1%; width: 260px; font-family:微软雅黑; font-size:18px; font-weight:bold; text-align:center; } #menu{ position:absolute; left:50%; margin-top:15px; margin-left:-300px; float: float; height: 38px; width:615px; line-height:38px; vertical-align:middle; text-align:center; border-radius: 8px; background-color:#000000; opacity:0.5; } #user_info { height: 35px; line-height:35px; vertical-align:middle; position: relative; float:right; margin-top:15px; margin-right:15px; width:240px; font-weight:bold; font-size:14px; } #welcome{ position: relative; float:left; } #logout{ position: relative; float:right; }
设置的信息都比较简单,没什么多说的,主要是body中设置的最小宽度和最小高度,这需要根据需求去自行调整。下面来看看菜单的设置:
我们编写了ul和li才存放菜单项,先不看外部CSS,嵌入的CSS中包含了两边的圆角矩形设置。然后就是javascript脚本,主要控制鼠标的移入和移出,也就是设置一下这两个事件的样式,主要是颜色和字体的变化,下面是CSS:
#menu_container{ position:relative; margin:2px; height: 34px; line-height:34px; vertical-align:middle; border-radius: 8px; background-image: -moz-linear-gradient(top,#EBEBEB, #BFBFBF); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #EBEBEB),color-stop(1, #BFBFBF)); } #menu_items{ list-style:none; line-height: normal; height: 34px; line-height:34px; vertical-align:middle; font-size:14px; border:2px solid solid; border-right-style:groove; } .menu_item{ display: list-item; float:left; width:100px; border-right:2px solid #F6F6F6; border-right-style:groove; cursor:pointer; } .on{ display: list-item; float:left; width:100px; background:#77D1F6; font-weight:bold; } .menu_item a{ height: 34px; line-height:34px; display:block; }
现在来看一下效果:
我们看到背景并没有是全屏的,仅仅出现在了header上,不用担心,我们后面要设置页面的自适应效果。下面就是页面的剩余元素了:
很容易看出,navigator是导航树,main就是主面板的iframe,footer是一些版权信息了,加上之后,我们来看一下CSS:
#navigator{ position:relative; float:left; width:200px; margin:5px 2px 5px 2px; left:5px; border-color: #77D1F6; border-width: 2px; border-style: solid; border-radius: 12px; -moz-box-shadow: 6px 6px 12px #282828; -webkit-box-shadow: 6px 6px 12px #282828; } #main{ position:relative; float:left; width: 80%; margin:5px; left:5px; border-color: #77D1F6; border-width: 2px; border-style: solid; border-radius: 12px 12px; -moz-box-shadow: 6px 6px 12px #282828; -webkit-box-shadow: 6px 6px 12px #282828; } iframe{ height:100%; width:100%; background:#FFF; position:relative; border-radius:12px; overflow:hidden; }
这些CSS也很简单,加上之后,我们来看一下效果:
也不是很好看,还是挤在了一起,只要加入下面的脚本段就可以调整了:
脚本中的像素调整可以根据需要自行进行,我们来看一下最终的显示效果:
其中导航树的制作这里不再详细介绍,请参考之前的相关文章,主面板的内容的设计也不是什么难事,请参考附件中的代码。
本部分内容就介绍完了,欢迎交流,希望对使用者有用。
番外篇-给页面加把锁, 点击查看