JS实现新浪博客左侧的Blog管理菜单效果代码
网络编程 2021-07-04 21:03www.168986.cn编程入门
这篇文章主要介绍了JS实现新浪博客左侧的Blog管理菜单效果代码,可实现基于鼠标点击事件动态操作页面元素样式的功能,界面美观大方,简洁实用,需要的朋友可以参考下
本文实例讲述了JS实现新浪博客左侧的Blog管理菜单效果代码。分享给大家供大家参考,具体如下
这里介绍新浪博客左侧的Blog管理菜单,我们变通一下,如果你在设计程序,那么本款菜单用到后台管理中想必应该很合适吧,图片是调用新浪的,用了比较多的图片,你用的时候最好是下载到本地,以免新浪哪天改版了,你就傻了。
运行效果截图如下
在线演示地址如下
具体代码如下
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>新浪博客左侧的管理菜单</title> <style type="text/css"> <!-- body{margin:0;padding:0;background:url("images/bg.gif")} body, td{font-size:12px} .menu_box_pad{background:#fdf9d5;padding:0 2px 2px 2px} .menu_box{border-:1px solid #ababab;border-left:1px solid #ababab;border-right:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6} .menu_box th{background:url('images/menu_list_icon.gif') no-repeat center;line-height:22px;width:10px} .menu_box td{background:url('images/menu_list_split.gif') no-repeat left bottom;line-height:20px} .menu_box a{text-decoration:none;color:#000} .menu_box a:hover{text-decoration:underline} .hand{cursor:hand;cursor:pointer} .ctrl_menu{border-left:1px solid #767676;border-bottom:1px solid #767676;border-right:1px solid #767676;background:#ffcf60} .ctrl_menu_title{padding-left:15px;font-weight:bold;line-height:25px} .ctrl_menu_title_bg{background:url('images/menu_title_bg.gif')} ._bg{background:url("images/_bg.gif")} .logo_bg{background:url("images/logo_bg.gif")} #_nav_menu {color:#fff} #_nav_menu a{text-decoration:none;color:#fff} #_nav_menu a:hover{text-decoration:underline;color:#ff6} --> </style> <script> function $(_sId){ return document.getElementById(_sId); } function exist(_sId){ var oObj = $(_sId); return oObj != null ? oObj : false; } function dw(_sTxt){ document.write(_sTxt); } function hide(_sId){ $(_sId).style.display = $(_sId).style.display == "none" ? "" : "none"; } function onlyShow(_sId, _iNum, _sPic, _sTxt1, _sTxt2){ var i = 0; var oCurr = exist(_sId + i); while(oCurr){ oCurr.style.display = "none"; $(_sPic + i).src = _sTxt2; i++; oCurr = exist(_sId + i) } $(_sId + _iNum).style.display = ""; $(_sPic + _iNum).src = _sTxt1; } function swapShow(_sId){ var i = 0; var oCurr = exist(_sId + i); while(oCurr){ hide(_sId + i); i++; oCurr = exist(_sId + i) } } function seekKey(_sKey){ var i = 0; while(exist(_sKey + i)){ i++; } return i; } function swapPic(_sId,_sAttr,_sTxt1, _sTxt2) { $(_sId)[_sAttr] = $(_sId)[_sAttr].indexOf(_sTxt1) > -1 ? _sTxt2 : _sTxt1; } function swap(_sId,_sAttr,_sTxt1, _sTxt2) { $(_sId)[_sAttr] = $(_sId)[_sAttr] == _sTxt1 ? _sTxt2 : _sTxt1; } function moveGif(_sId){ swap(_sId,'className','marginLeft2',''); } function moveStart(_sId){ __tmp__time = setInterval("moveGif('" + _sId + "')",200); } function moveS(_sId){ clearInterval(__tmp__time); $(_sId).className = "marginLeft2"; } function switchShow(){ hide('left'); swapPic('arrow','src','images/control_switch_up.gif','images/control_switch_down.gif'); swapShow('hideLeft'); swapShow('hideBody'); } function scroll_to_() { document.body.scrollTop=0; } function mainFrameRedirect(url) { oo = document.getElementById("mainFrame"); oo.url = url; } </script> </head> <body> <table align="left" width="220" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="50" align="left" valign=""> <!-- 控制面板菜单 --> <table width="205" border="0" cellspacing="0" cellpadding="0" class="ctrl_menu"> <tr height="5"><td></td></tr> <tr> <td align="center"> <!-- BLOG文章 --> <table width="195" border="0" cellspacing="0" cellpadding="0" class="ctrl_menu_title_bg"> <tr class="hand" onClick="hide('hideMenuFunc3')"> <td width="174" class="ctrl_menu_title">BLOG文章管理</td> <td width="21"><image id='MenuFunc3' src="images/menu_title_down.gif"></td> </tr> <tr id="hideMenuFunc3"> <td align="left" colspan="2" class="menu_box_pad"> <table width="100%" border="0" cellspacing="5" cellpadding="0" class="menu_box"> <tr> <th> </th> <td><a href="#" target="mainFrame" onClick="scroll_to_()">发表BLOG文章</a></td> </tr> <tr> <th> </th> <td><a href="#" target="mainFrame" onClick="scroll_to_()">BLOG文章管理</a></td> </tr> <tr> <th> </th> <td><a href="#" target="mainFrame" onClick="scroll_to_()">BLOG评论管理</a></td> </tr> </table> </td> </tr> </table> <!-- /BLOG文章 --> </td> </tr> <tr height="5"><td></td></tr> <tr> <td align="center"> <!-- BLOG信息 --> <table width="195" border="0" cellspacing="0" cellpadding="0" class="ctrl_menu_title_bg"> <tr class="hand" onClick="hide('hideMenuFunc2')"> <td width="174" class="ctrl_menu_title">BLOG信息设置</td> <td width="21"><image id='MenuFunc2' src="images/menu_title_down.gif"></td> </tr> <tr id="hideMenuFunc2"> <td align="left" colspan="2" class="menu_box_pad" > <table width="100%" border="0" cellspacing="5" cellpadding="0" class="menu_box"> <tr> <th> </th> <td><a href="#" target="mainFrame" onClick="scroll_to_()">更改基本信息</a></td> </tr> <tr> <th> </th> <td><a href="#" target="mainFrame" onClick="scroll_to_()">定制我的模板</a></td> </tr> <tr> <th> </th> <td><a href="#" target="mainFrame" onClick="scroll_to_()">首页内容维护</a></td> </tr> </table></td> </tr> </table> <!-- /BLOG信息 --></td> </tr> <tr height="5"><td></td></tr> <tr> <td align="center"> <!-- 个人信息 --> <table width="195" border="0" cellspacing="0" cellpadding="0" class="ctrl_menu_title_bg"> <tr class="hand" onClick="hide('hideMenuFunc1')"> <td width="174" class="ctrl_menu_title">个人信息设置</td> <td width="21"><image id='MenuFunc1' src="images/menu_title_down.gif"></td> </tr> <tr id="hideMenuFunc1" style="display:none"> <td align="left" colspan="2" class="menu_box_pad"> <table width="100%" border="0" cellspacing="5" cellpadding="0" class="menu_box"> <tr> <th> </th> <td><a target="mainFrame" href="#" onClick="scroll_to_()">更改基本资料</a></td> </tr> <tr> <th> </th> <td><a target="mainFrame" href="#" onClick="scroll_to_()">登录默认选项</a></td> </tr> </table> </td> </tr> </table> <!-- /个人信息 --> </td> </tr> <tr height="5"><td></td></tr> </table> </body> </html>
希望本文所述对大家JavaScript程序设计有所帮助。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程