Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

非常实用的下拉菜单导航

[复制链接]
小冯1 发表于 2008-12-4 02:53:33 | 显示全部楼层 |阅读模式
本帖最后由 小冯1 于 2008-12-4 02:55 编辑

网了在那里弄到的,觉得实用,拿出来分享!

演示里只有二级菜单,下面代码是三级的

演示:http://www.ca001.com/bbs
  1. <script language="JavaScript">
  2. var mmenus    = new Array();
  3. var misShow   = new Boolean();
  4. misShow=false;
  5. var misdown   = new Boolean();
  6. misdown=false;
  7. var mnumberofsub=0;
  8. var musestatus=false;
  9. var mpopTimer = 0;
  10. mmenucolor='#89CB10';mfontcolor='MenuText';mmenuoutcolor='#ADEF34';mmenuincolor='#B5E74E';mmenuoutbordercolor='#ECFA3A';mmenuinbordercolor='#5A2614';mmidoutcolor='#A9DA1D';mmidincolor='#799310';mmenuovercolor='#004080';mitemedge='0';msubedge='1';mmenuunitwidth=55;mmenuitemwidth=100;mmenuheight=25;mmenuwidth='970';mmenuadjust=0;mmenuadjustV=0;mfonts='font-family: 宋体; font-size: 9pt; color: MenuText; ';mcursor='hand';
  11. var swipeSteps = 4;
  12. var swipemsec = 25;
  13. var swipeArray = new Array();
  14. function swipe(el, dir, steps, msec) {
  15. if (steps == null) steps = swipeSteps;
  16. if (msec == null) msec = swipemsec;
  17. if (el.swipeIndex == null)
  18.   el.swipeIndex = swipeArray.length;
  19. if (el.swipeTimer != null)
  20.   window.clearTimeout(el.swipeTimer);
  21. swipeArray[el.swipeIndex] = el;
  22. el.style.clip = "rect(-99999, 99999, 99999, -99999)";
  23. if (el.swipeCounter == null || el.swipeCounter == 0) {
  24.   el.orgLeft  = el.offsetLeft;
  25.   el.orgTop  = el.offsetTop;
  26.   el.orgWidth = el.offsetWidth;
  27.   el.orgHeight  = el.offsetHeight;
  28. }
  29. el.swipeCounter = steps;
  30. el.style.clip = "rect(0,0,0,0)";
  31. window.setTimeout("repeat(" + dir + "," + el.swipeIndex + "," + steps + "," + msec + ")", msec);
  32. }
  33. function repeat(dir, index, steps, msec) {
  34. el = swipeArray[index];
  35. var left   = el.orgLeft;
  36. var top    = el.orgTop;
  37. var width  = el.orgWidth;
  38. var height = el.orgHeight;
  39. if (el.swipeCounter == 0) {
  40.   el.style.clip = "rect(-99999, 99999, 99999, -99999)";
  41.   return;
  42. }
  43. else {
  44.   el.swipeCounter--;
  45.   el.style.visibility = "visible";
  46.   switch (dir) {
  47.    case 2:
  48.     el.style.clip = "rect(" + height*el.swipeCounter/steps + "," + width + "," + height + "," + 0 + ")";
  49.     el.style.top  = top - height*el.swipeCounter/steps;
  50.     break;
  51.    case 8:
  52.     el.style.clip = "rect(" + 0 + "," + width + "," + height*(steps-el.swipeCounter)/steps + "," + 0 + ")";
  53.     el.style.top  = top + height*el.swipeCounter/steps;
  54.     break;
  55.    case 6:
  56.     el.style.clip = "rect(" + 0 + "," + width + "," + height + "," + width*(el.swipeCounter)/steps + ")";
  57.     el.style.left  = left - width*el.swipeCounter/steps;
  58.     break;
  59.    case 4:
  60.     el.style.clip = "rect(" + 0 + "," + width*(swipeSteps - el.swipeCounter)/steps + "," + height + "," + 0 + ")";
  61.     el.style.left  = left + width*el.swipeCounter/steps;
  62.     break;
  63.   }
  64.   
  65.   el.swipeTimer = window.setTimeout("repeat(" + dir + "," + index + "," + steps + "," + msec + ")", msec);
  66. }
  67. }
  68. var mtmpleft="";
  69. var mtmptop="";
  70. function hideSwipe(el) {
  71. window.clearTimeout(el.swipeTimer);
  72. el.style.visibility = "hidden";
  73. el.style.clip = "rect(-99999, 99999, 99999, -99999)";
  74. el.swipeCounter = 0;
  75. if(mtmpleft!="")el.style.left = mtmpleft;
  76. if(mtmptop!="")el.style.top = mtmptop;
  77. }
  78. function stoperror(){
  79. return true;
  80. }
  81. window.onerror=stoperror;
  82. function mpopOut() {
  83. mpopTimer = setTimeout('mallhide()', 500);
  84. }
  85. function getReal(el, type, value) {
  86. temp = el;
  87. while ((temp != null) && (temp.tagName != "BODY")) {
  88.   if (eval("temp." + type) == value) {
  89.    el = temp;
  90.    return el;
  91.   }
  92.   temp = temp.parentElement;
  93. }
  94. return el;
  95. }

  96. function mMenuRegister(menu)
  97. {
  98.   mmenus[mmenus.length] = menu
  99.   return (mmenus.length - 1)
  100. }
  101. function mMenuItem(caption,command,target,isline,statustxt,level,img,sizex,sizey,pos){
  102. this.items = new Array();
  103. this.caption=caption;
  104. this.command=command;
  105. this.target=target;
  106. this.isline=isline;
  107. this.statustxt=statustxt;
  108. if(level!=null){mnumberofsub++;
  109. this.hasc=mnumberofsub;}
  110. this.level=level;
  111. this.img=img;
  112. this.sizex=sizex;
  113. this.sizey=sizey;
  114. this.pos=pos;
  115. }
  116. function mMenu(caption,command,target,img,sizex,sizey,pos){
  117. this.items = new Array();
  118. this.caption=caption;
  119. this.command=command;
  120. this.target=target;
  121. this.img=img;
  122. this.sizex=sizex;
  123. this.sizey=sizey;
  124. this.pos=pos;
  125. this.id=mMenuRegister(this);
  126. }
  127. function mMenuAddItem(item)
  128. {
  129.   this.items[this.items.length] = item
  130.   item.parent = this.id;
  131.   this.children=true;
  132. }
  133. mMenu.prototype.addItem = mMenuAddItem;
  134. mMenuItem.prototype.addsubItem = mMenuAddItem;
  135. function mtoout(src){
  136. src.style.borderLeftColor=mmenuoutbordercolor;
  137. src.style.borderRightColor=mmenuinbordercolor;
  138. src.style.borderTopColor=mmenuoutbordercolor;
  139. src.style.borderBottomColor=mmenuinbordercolor;
  140. src.style.backgroundColor=mmenuoutcolor;
  141. src.style.color=mmenuovercolor;
  142. }
  143. function mtoin(src){
  144. src.style.borderLeftColor=mmenuinbordercolor;
  145. src.style.borderRightColor=mmenuoutbordercolor;
  146. src.style.borderTopColor=mmenuinbordercolor;
  147. src.style.borderBottomColor=mmenuoutbordercolor;
  148. src.style.backgroundColor=mmenuincolor;
  149. src.style.color=mmenuovercolor;
  150. }
  151. function mnochange(src){
  152. src.style.borderLeftColor=mmenucolor;
  153. src.style.borderRightColor=mmenucolor;
  154. src.style.borderTopColor=mmenucolor;
  155. src.style.borderBottomColor=mmenucolor;
  156. src.style.backgroundColor='';
  157. src.style.color=mfontcolor;
  158. }
  159. function mallhide(){
  160. for(var nummenu=0;nummenu<mmenus.length;nummenu++){
  161.   var themenu=document.all['mMenu'+nummenu]
  162.   var themenudiv=document.all['mmenudiv'+nummenu]
  163.                 mnochange(themenu);
  164.                 mmenuhide(themenudiv);
  165.                 }
  166.         for(nummenu=1;nummenu<=mnumberofsub;nummenu++){  
  167.          var thesub=document.all['msubmenudiv'+nummenu]      
  168.          msubmenuhide(thesub);
  169.          mnochange(document.all['mp'+nummenu]);
  170.          document.all["mitem"+nummenu].style.color=mfontcolor;
  171.          }
  172. }
  173. function mmenuhide(menuid){
  174. menuid.style.filter='Alpha(Opacity=100)';
  175. hideSwipe(menuid);
  176. misShow=false;
  177. }
  178. function msubmenuhide(menuid){
  179. menuid.style.filter='Alpha(Opacity=100)';
  180. menuid.style.visibility='hidden';
  181. }
  182. function mmenushow(menuid,pid){
  183. menuid.style.filter='Alpha(Opacity=80)';
  184. menuid.style.left=mposflag.offsetLeft+pid.offsetLeft+mmenuadjust;menuid.style.top=mposflag.offsetTop+mmenutable.offsetHeight+mmenuadjustV;
  185. if(mmenuitemwidth+parseInt(menuid.style.left)>document.body.clientWidth+document.body.scrollLeft)
  186. menuid.style.left=document.body.clientWidth+document.body.scrollLeft-mmenuitemwidth;
  187. mtmpleft=menuid.style.left;mtmptop=menuid.style.top;swipe(menuid,2,4);
  188. misShow=true;
  189. }
  190. function mshowsubmenu(menuid,pid,rid){
  191. menuid.style.filter='Alpha(Opacity=80)';
  192. menuid.style.left=pid.offsetWidth+rid.offsetLeft;
  193. menuid.style.top=pid.offsetTop+rid.offsetTop-3;
  194. if(mmenuitemwidth+parseInt(menuid.style.left)>document.body.clientWidth+document.body.scrollLeft)
  195. menuid.style.left=document.body.clientWidth+document.body.scrollLeft-mmenuitemwidth;
  196. menuid.style.visibility='visible';
  197. }
  198. function mmenu_over(menuid,x){
  199. toel = getReal(window.event.toElement, "className", "coolButton");
  200. fromel = getReal(window.event.fromElement, "className", "coolButton");
  201. if (toel == fromel) return;
  202. if(x<0){
  203.   misShow = false;
  204.   mallhide();
  205.   mtoout(eval("mMenu"+x));
  206. }else{
  207.   mallhide();
  208.   mtoin(eval("mMenu"+x));
  209.   mmenushow(menuid,eval("mMenu"+x));
  210. }
  211. clearTimeout(mpopTimer);
  212. }
  213. function mmenu_out(x){
  214. toel = getReal(window.event.toElement, "className", "coolButton");
  215. fromel = getReal(window.event.fromElement, "className", "coolButton");
  216. if (toel == fromel) return;
  217. if (misShow){
  218. mtoin(eval("mMenu"+x));
  219. }else{
  220. mnochange(eval("mMenu"+x));
  221. }
  222. mpopOut()
  223. }
  224. function mmenu_down(menuid,x){
  225.   if(misShow){
  226.   mmenuhide(menuid);
  227.   mtoout(eval("mMenu"+x));
  228.   }
  229.   else{
  230.   mtoin(eval("mMenu"+x));
  231.   mmenushow(menuid,eval("mMenu"+x));
  232.   misdown=true;
  233.   }
  234. }
  235. function mmenu_up(){
  236.   misdown=false;
  237. }
  238. function mmenuitem_over(menuid,item,x,j,i){
  239. toel = getReal(window.event.toElement, "className", "coolButton");
  240. fromel = getReal(window.event.fromElement, "className", "coolButton");
  241. if (toel == fromel) return;
  242. srcel = getReal(window.event.srcElement, "className", "coolButton");
  243.         for(nummenu=1;nummenu<=mnumberofsub;nummenu++){  
  244.          var thesub=document.all['msubmenudiv'+nummenu]
  245.          if(!(menuid==thesub||menuid.style.tag>=thesub.style.tag)){
  246.          msubmenuhide(thesub);
  247.          mnochange(document.all['mp'+nummenu]);
  248.          document.all["mitem"+nummenu].style.color=mfontcolor;
  249.          }
  250.         }
  251. if(item)document.all["mitem"+item].style.color=mmenuovercolor;
  252. if(misdown||item){
  253. mtoin(srcel);
  254. }
  255. else{
  256. mtoout(srcel);
  257. }
  258. if(x==-1)mthestatus=eval("msub"+j).items[i].statustxt;
  259. if(j==-1)mthestatus=mmenus[x].items[i].statustxt;
  260. if(mthestatus!=""){
  261. musestatus=true;
  262. window.status=mthestatus;
  263. }
  264. clearTimeout(mpopTimer);
  265. }
  266. function mmenuitem_out(hassub){
  267. toel = getReal(window.event.toElement, "className", "coolButton");
  268. fromel = getReal(window.event.fromElement, "className", "coolButton");
  269. if (toel == fromel) return;
  270. srcel = getReal(window.event.srcElement, "className", "coolButton");
  271. if(!hassub)mnochange(srcel);
  272. if(musestatus)window.status="";
  273. mpopOut()
  274. }
  275. function mmenuitem_down(){
  276. srcel = getReal(window.event.srcElement, "className", "coolButton");
  277. mtoin(srcel)
  278. misdown=true;
  279. }
  280. function mmenuitem_up(){
  281. srcel = getReal(window.event.srcElement, "className", "coolButton");
  282. mtoout(srcel)
  283. misdown=false;
  284. }
  285. function mexec3(j,i){
  286. var cmd;
  287. if(eval("msub"+j).items[i].target=="blank"){
  288.   cmd = "window.open('"+eval("msub"+j).items[i].command+"')";
  289. }else{
  290.   cmd = eval("msub"+j).items[i].target+".location=""+eval("msub"+j).items[i].command+""";
  291. }
  292. eval(cmd);
  293. }
  294. function mexec2(x){
  295. var cmd;
  296. if(mmenus[x].target=="blank"){
  297.   cmd = "window.open('"+mmenus[x].command+"')";
  298. }else{
  299.   cmd = mmenus[x].target+".location=""+mmenus[x].command+""";
  300. }
  301. eval(cmd);
  302. }
  303. function mexec(x,i){
  304. var cmd;
  305. if(mmenus[x].items[i].target=="blank"){
  306.   cmd = "window.open('"+mmenus[x].items[i].command+"')";
  307. }else{
  308.   cmd = mmenus[x].items[i].target+".location=""+mmenus[x].items[i].command+""";
  309. }
  310. eval(cmd);
  311. }
  312. function mbody_click(){
  313. if (misShow){
  314. srcel = getReal(window.event.srcElement, "className", "coolButton");
  315. for(var x=0;x<=mmenus.length;x++){
  316.   if(srcel.id=="mMenu"+x)
  317.   return;
  318. }
  319. for(x=1;x<=mnumberofsub;x++){
  320.   if(srcel.id=="mp"+x)
  321.   return;
  322. }
  323. mallhide();
  324. }
  325. }
  326. document.onclick=mbody_click;
  327. function mwritetodocument(){
  328.       var mwb=1;
  329.                      var stringx='<div id="mposflag" style="position:absolute;"></div><table  id=mmenutable border=0 cellpadding=3 cellspacing=2 width='+mmenuwidth+' height='+mmenuheight+' bgcolor='+mmenucolor+
  330.                      ' onselectstart="event.returnValue=false"'+
  331.                      ' style="filter:Alpha(Opacity=80);cursor:'+mcursor+';'+mfonts+
  332.                      ' border-left: '+mwb+'px solid '+mmenuoutbordercolor+';'+
  333.                      ' border-right: '+mwb+'px solid '+mmenuinbordercolor+'; '+
  334.                      'border-top: '+mwb+'px solid '+mmenuoutbordercolor+'; '+
  335.                      'border-bottom: '+mwb+'px solid '+mmenuinbordercolor+'; padding:0px"><tr>'
  336.                      for(var x=0;x<mmenus.length;x++){
  337.                       var thismenu=mmenus[x];
  338.                       var imgsize="";
  339.                       if(thismenu.sizex!="0"||thismenu.sizey!="0")imgsize=" width="+thismenu.sizex+" height="+thismenu.sizey;
  340.                       var ifspace="";
  341.                       if(thismenu.caption!="")ifspace=" ";
  342.                       stringx += "<td nowrap class=coolButton id=mMenu"+x+" style='border: "+mitemedge+"px solid "+mmenucolor+
  343.                       "' width="+mmenuunitwidth+"px onmouseover=mmenu_over(mmenudiv"+x+
  344.                       ","+x+") onmouseout=mmenu_out("+x+
  345.                       ") onmousedown=mmenu_down(mmenudiv"+x+","+x+")";
  346.                             if(thismenu.command!=""){
  347.                                 stringx += " onmouseup=mmenu_up();mexec2("+x+");";
  348.                             }else{
  349.                                stringx += " onmouseup=mmenu_up()";
  350.                             }
  351.                             if(thismenu.pos=="0"){
  352.                                 stringx += " align=center><img align=absmiddle src='"+thismenu.img+"'"+imgsize+">"+ifspace+thismenu.caption+"</td>";
  353.                             }else if(thismenu.pos=="1"){
  354.                                 stringx += " align=center>"+thismenu.caption+ifspace+"<img align=absmiddle src='"+thismenu.img+"'"+imgsize+"></td>";
  355.                             }else if(thismenu.pos=="2"){
  356.                                 stringx += " align=center background='"+thismenu.img+"'> "+thismenu.caption+" </td>";
  357.                             }else{
  358.                                 stringx += " align=center> "+thismenu.caption+" </td>";
  359.                             }
  360.                       stringx += "";
  361.                      }
  362.                      stringx+="<td width=*> </td></tr></table>";
  363.                      
  364.                      
  365.                      for(var x=0;x<mmenus.length;x++){
  366.                       thismenu=mmenus[x];
  367.                         if(x<0){
  368.                         stringx+='<div id=mmenudiv'+x+' style="visiable:none"></div>';
  369.                         }else{
  370.                         stringx+='<div id=mmenudiv'+x+
  371.                         ' style="filter:Alpha(Opacity=80);cursor:'+mcursor+';position:absolute;'+
  372.                         'width:'+mmenuitemwidth+'px; z-index:'+(x+100);
  373.                         if(mmenuinbordercolor!=mmenuoutbordercolor&&msubedge=="0"){
  374.                         stringx+=';border-left: 1px solid '+mmidoutcolor+
  375.                         ';border-top: 1px solid '+mmidoutcolor;}
  376.                         stringx+=';border-right: 1px solid '+mmenuinbordercolor+
  377.                         ';border-bottom: 1px solid '+mmenuinbordercolor+';visibility:hidden" onselectstart="event.returnValue=false">\n'+
  378.                       '<table  width="100%" border="0" height="100%" align="center" cellpadding="0" cellspacing="2" '+
  379.                       'style="'+mfonts+' border-left: 1px solid '+mmenuoutbordercolor;
  380.                       if(mmenuinbordercolor!=mmenuoutbordercolor&&msubedge=="0"){
  381.                       stringx+=';border-right: 1px solid '+mmidincolor+
  382.                       ';border-bottom: 1px solid '+mmidincolor;}
  383.                       stringx+=';border-top: 1px solid '+mmenuoutbordercolor+
  384.                       ';padding: 4px" bgcolor='+mmenucolor+'>\n'
  385.                       for(var i=0;i<thismenu.items.length;i++){
  386.                        var thismenuitem=thismenu.items[i];
  387.                        var imgsize="";
  388.                               if(thismenuitem.sizex!="0"||thismenuitem.sizey!="0")imgsize=" width="+thismenuitem.sizex+" height="+thismenuitem.sizey;
  389.                               var ifspace="";
  390.                               if(thismenu.caption!="")ifspace=" ";
  391.                        if(thismenuitem.hasc!=null){
  392.                        stringx += "<tr><td id=mp"+thismenuitem.hasc+" class=coolButton style='border: "+mitemedge+"px solid "+mmenucolor+
  393.                        "' width=100% onmouseout=mmenuitem_out(true) onmouseover="mmenuitem_over(mmenudiv"+x+
  394.                        ",'"+thismenuitem.hasc+"',"+x+",-1,"+i+");mshowsubmenu(msubmenudiv"+thismenuitem.hasc+",mp"+thismenuitem.hasc+",mmenudiv"+x+");""+
  395.                        "><table id=mitem"+thismenuitem.hasc+" cellspacing='0' cellpadding='0' border='0' width='100%' style='"+mfonts+"'><tr><td ";
  396.                          if(thismenuitem.pos=="0"){
  397.                                   stringx += "><img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+">"+ifspace+thismenuitem.caption+"</td><td";
  398.                                 }else if(thismenuitem.pos=="1"){
  399.                                   stringx += ">"+thismenuitem.caption+ifspace+"<img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+"></td><td";
  400.                                 }else if(thismenuitem.pos=="2"){
  401.                                   stringx += "background='"+thismenuitem.img+"'>"+thismenuitem.caption+"</td><td background='"+thismenuitem.img+"'";
  402.                                 }else{
  403.                                   stringx += ">"+thismenuitem.caption+"</td><td";
  404.                                 }
  405.                          stringx += " align=right width='1'><font face='Webdings' style='font-size: 6pt'>4</font></td></tr></table></td></tr>\n";                       
  406.                        }else if(!thismenuitem.isline){
  407.                        stringx += "<tr><td class=coolButton style='border: "+mitemedge+"px solid "+mmenucolor+
  408.                        "' width=100% height=15px onmouseover="mmenuitem_over(mmenudiv"+x+
  409.                        ",false,"+x+",-1,"+i+");" onmouseout=mmenuitem_out() onmousedown=mmenuitem_down() onmouseup=";
  410.      stringx += "mmenuitem_up();mexec("+x+","+i+"); ";
  411.        if(thismenuitem.pos=="0"){
  412.                                   stringx += "><img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+">"+ifspace+thismenuitem.caption+"</td></tr>";
  413.                                 }else if(thismenuitem.pos=="1"){
  414.                                   stringx += ">"+thismenuitem.caption+ifspace+"<img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+"></td></tr>";
  415.                                 }else if(thismenuitem.pos=="2"){
  416.                                   stringx += "background='"+thismenuitem.img+"'>"+thismenuitem.caption+"</td></tr>";
  417.                                 }else{
  418.                                   stringx += ">"+thismenuitem.caption+"</td></tr>";
  419.                                 }
  420.      }else{
  421.                        stringx+='<tr><td height="1" background="/images/hr.gif" onmousemove="clearTimeout(mpopTimer);"><img height="1" width="1" src="none.gif" border="0"></td></tr>\n';
  422.                        }
  423.                       }stringx+='</table>\n</div>'
  424.                       }                     
  425.                 }
  426.                
  427. for(var j=1;j<=mnumberofsub;j++){     
  428. thisitem=eval("msub"+j);
  429. stringx+='<div id=msubmenudiv'+j+
  430.                         ' style="filter:Alpha(Opacity=80);tag:'+thisitem.level+';cursor:'+mcursor+';position:absolute;'+
  431.                         'width:'+mmenuitemwidth+'px; z-index:'+(j+200);
  432.                         if(mmenuinbordercolor!=mmenuoutbordercolor&&msubedge=="0"){
  433.                         stringx+=';border-left: 1px solid '+mmidoutcolor+
  434.                         ';border-top: 1px solid '+mmidoutcolor;}
  435.                         stringx+=';border-right: 1px solid '+mmenuinbordercolor+
  436.                         ';border-bottom: 1px solid '+mmenuinbordercolor+';visibility:hidden" onselectstart="event.returnValue=false">\n'+
  437.                       '<table  width="100%" border="0" height="100%" align="center" cellpadding="0" cellspacing="2" '+
  438.                       'style="'+mfonts+' border-left: 1px solid '+mmenuoutbordercolor;
  439.                       if(mmenuinbordercolor!=mmenuoutbordercolor&&msubedge=="0"){
  440.                       stringx+=';border-right: 1px solid '+mmidincolor+
  441.                       ';border-bottom: 1px solid '+mmidincolor;}
  442.                       stringx+=';border-top: 1px solid '+mmenuoutbordercolor+
  443.                       ';padding: 4px" bgcolor='+mmenucolor+'>\n'
  444.                       for(var i=0;i<thisitem.items.length;i++){
  445.                        var thismenuitem=thisitem.items[i];
  446.                        var imgsize="";
  447.                               if(thismenuitem.sizex!="0"||thismenuitem.sizey!="0")imgsize=" width="+thismenuitem.sizex+" height="+thismenuitem.sizey;
  448.                               var ifspace="";
  449.                               if(thismenu.caption!="")ifspace=" ";
  450.                        if(thismenuitem.hasc!=null){
  451.                        stringx += "<tr><td id=mp"+thismenuitem.hasc+" class=coolButton style='border: "+mitemedge+"px solid "+mmenucolor+
  452.                        "' width=100% onmouseout=mmenuitem_out(true) onmouseover="mmenuitem_over(msubmenudiv"+j+
  453.                        ",'"+thismenuitem.hasc+"',-1,"+j+","+i+");mshowsubmenu(msubmenudiv"+thismenuitem.hasc+",mp"+thismenuitem.hasc+",msubmenudiv"+j+");""+
  454.                        "><table id=mitem"+thismenuitem.hasc+" cellspacing='0' cellpadding='0' border='0' width='100%' style='"+mfonts+"'><tr><td ";
  455.                          if(thismenuitem.pos=="0"){
  456.                                   stringx += "><img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+">"+ifspace+thismenuitem.caption+"</td><td";
  457.                                 }else if(thismenuitem.pos=="1"){
  458.                                   stringx += ">"+thismenuitem.caption+ifspace+"<img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+"></td><td";
  459.                                 }else if(thismenuitem.pos=="2"){
  460.                                   stringx += "background='"+thismenuitem.img+"'>"+thismenuitem.caption+"</td><td background='"+thismenuitem.img+"'";
  461.                                 }else{
  462.                                   stringx += ">"+thismenuitem.caption+"</td><td";
  463.                                 }
  464.                          stringx += " align=right width='1'><font face='Webdings' style='font-size: 6pt'>4</font></td></tr></table></td></tr>\n";                       
  465.                        }else if(!thismenuitem.isline){
  466.                        stringx += "<tr><td class=coolButton style='border: "+mitemedge+"px solid "+mmenucolor+
  467.                        "' width=100% height=15px onmouseover="mmenuitem_over(msubmenudiv"+j+
  468.                        ",false,-1,"+j+","+i+");" onmouseout=mmenuitem_out() onmousedown=mmenuitem_down() onmouseup=";
  469.                        stringx += "mmenuitem_up();mexec3("+j+","+i+"); ";
  470.      if(thismenuitem.pos=="0"){
  471.                                   stringx += "><img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+">"+ifspace+thismenuitem.caption+"</td></tr>";
  472.                                 }else if(thismenuitem.pos=="1"){
  473.                                   stringx += ">"+thismenuitem.caption+ifspace+"<img align=absmiddle src='"+thismenuitem.img+"'"+imgsize+"></td></tr>";
  474.                                 }else if(thismenuitem.pos=="2"){
  475.                                   stringx += "background='"+thismenuitem.img+"'>"+thismenuitem.caption+"</td></tr>";
  476.                                 }else{
  477.                                   stringx += ">"+thismenuitem.caption+"</td></tr>";
  478.                                 }
  479.                               }else{
  480.                        stringx+='<tr><td height="1" background="/images/hr.gif" onmousemove="clearTimeout(mpopTimer);"><img height="1" width="1" src="none.gif" border="0"></td></tr>\n';
  481.                        }
  482.                       }
  483. stringx+='</table>\n</div>'
  484. }
  485.        document.write("<div align='center' id='JsMenuCSS'>"+stringx+"</div>");
  486. }

  487. mpmenu1=new mMenu('专业扩声','/index_back.php?gid=102','self','','','','');
  488. mpmenu1.addItem(new mMenuItem(' 扩声技术交流','/forum-1-1.html','blank',false,'扩声技术交流',null,'','','',''));
  489. mpmenu1.addItem(new mMenuItem(' 工程设计交流','/forum-6-1.html','self',false,'工程设计交流',null,'','','',''));
  490. mpmenu1.addItem(new mMenuItem(' 公共场所系统','/forum-115-1.html','self',false,'公共场所系统',null,'','','',''));
  491. mpmenu1.addItem(new mMenuItem(' 话筒和耳机','/forum-351-1.html','self',false,'',null,'','','',''));
  492. mpmenu1.addItem(new mMenuItem(null,null,null,true));

  493. mpmenu1.addItem(new mMenuItem(' 建声技术交流','/forum-20-1.html','self',false,'',null,'','','',''));
  494. mpmenu2=new mMenu('舞台灯光','/index_back.php?gid=104/','self','','','','');
  495. mpmenu2.addItem(new mMenuItem(' 灯光技术交流','/forum-22-1.html','self',false,'灯光技术交流',null,'','','',''));
  496. mpmenu2.addItem(new mMenuItem(' 舞美制作交流','/forum-33-1.html','self',false,'舞美制作交流',null,'','','',''));

  497. mpmenu3=new mMenu('KTV与VOD','/index_back.php?gid=138/','self','','','','');
  498. mpmenu3.addItem(new mMenuItem(' 卡拉OK应用','/forum-116-1.html','self',false,'卡拉OK应用',null,'','','',''));
  499. mpmenu3.addItem(new mMenuItem(' VOD技术应用','/forum-237-1.html','self',false,'VOD技术应用',null,'','','',''));

  500. mpmenu4=new mMenu('会议广播 ','/forum-115-1.html/','self','','','','');
  501. mpmenu4.addItem(new mMenuItem(' 会议系统','/forum-225-1.html','self',false,'会议系统',null,'','','',''));
  502. mpmenu4.addItem(new mMenuItem(' 广播系统','/forum-226-1.html','self',false,'广播系统',null,'','','',''));
  503. mpmenu4.addItem(new mMenuItem(' 监控系统','/forum-228-1.html','self',false,'监控系统',null,'','','',''));
  504. mpmenu4.addItem(new mMenuItem(' 中控系统','/forum-227-1.html','self',false,'中控系统',null,'','','',''));
  505. mpmenu4.addItem(new mMenuItem(' 多媒体技术','/forum-117-1.html','self',false,'多媒体技术',null,'','','',''));

  506. mpmenu5=new mMenu('话筒耳机','/forum-351-1.html/','self','','','','');

  507. mpmenu6=new mMenu('精彩论坛','/bbs/','self','','','','');
  508. msub1=new mMenuItem(' ≡日常事务≡','','self',false,'','1','','','','');
  509. msub1.addsubItem(new mMenuItem(' 站务论坛','/bbs/list.asp?boardid=1','self',false,'关于本站的日常或其他事务的讨论区',null,'','','',''));
  510. msub1.addsubItem(new mMenuItem(' FTP和会员服务区','/bbs/list.asp?boardid=2','self',false,'本站FTP的使用以及会员们讨论论坛建设的好地方',null,'','','',''));
  511. msub1.addsubItem(new mMenuItem(' 需求与补档','/bbs/list.asp?boardid=17','self',false,'大家需要什么都在这里发贴,其他版面不允许发布此类帖子,违者删贴。',null,'','','',''));
  512. mpmenu6.addItem(msub1);
  513. mpmenu6.addItem(new mMenuItem(null,null,null,true));
  514. msub2=new mMenuItem(' ≡软件交流≡','','self',false,'','1','','','','');
  515. msub2.addsubItem(new mMenuItem(' 软件讨论中心','/bbs/list.asp?boardid=3','self',false,'这里是软件交流天地,我要最新的软件,我要最好的注册…',null,'','','',''));
  516. msub2.addsubItem(new mMenuItem(' 操作系统论坛','/bbs/list.asp?boardid=4','self',false,'各种操作系统的最新消息、使用心得体会交流。',null,'','','',''));
  517. msub2.addsubItem(new mMenuItem(' 影音无极限','/bbs/list.asp?boardid=5','self',false,'这里提供最新最清晰的DivX 这里发布最劲最High的音乐 想把握最新的娱乐动态?尽在动感!',null,'','','',''));
  518. msub2.addsubItem(new mMenuItem(' 游民家园','/bbs/list.asp?boardid=6','self',false,'游民家园',null,'','','',''));
  519. mpmenu6.addItem(msub2);
  520. mpmenu6.addItem(new mMenuItem(null,null,null,true));
  521. msub3=new mMenuItem(' ≡技术交流≡','','self',false,'','1','','','','');
  522. msub3.addsubItem(new mMenuItem(' 菜鸟天堂','/bbs/list.asp?boardid=7','self',false,'讨论网络技术,关注网络安全。网络的加油站。',null,'','','',''));
  523. msub3.addsubItem(new mMenuItem(' 网络技术和安全','/bbs/list.asp?boardid=8','self',false,'讨论网络技术,关注网络安全。网络的加油站。',null,'','','',''));
  524. msub3.addsubItem(new mMenuItem(' 编程爱好者论坛','/bbs/list.asp?boardid=9','self',false,'各种编程语言、多媒体知识的交流园地',null,'','','',''));
  525. msub3.addsubItem(new mMenuItem(' 硬件讨论区','/bbs/list.asp?boardid=10','self',false,'讨论有关计算机硬件的论坛。',null,'','','',''));
  526. msub3.addsubItem(new mMenuItem(' 新硬件大看台','/bbs/list.asp?boardid=15','self',false,',新,精——只介绍讨论最新最酷的硬件产品',null,'','','',''));
  527. mpmenu6.addItem(msub3);
  528. mpmenu6.addItem(new mMenuItem(null,null,null,true));
  529. msub4=new mMenuItem(' ≡网友空间≡','','self',false,'','1','','','','');
  530. msub4.addsubItem(new mMenuItem(' 情感驿站','/bbs/list.asp?boardid=11','self',false,'男孩、女孩,爱情、友情,人类永恒的话题。',null,'','','',''));
  531. msub4.addsubItem(new mMenuItem(' 搞笑论坛','/bbs/list.asp?boardid=12','self',false,'专门张贴笑话和小小说的经典对白,搞笑图片,你也可以进来和我们一起参与哦。',null,'','','',''));
  532. msub4.addsubItem(new mMenuItem(' 贴图专区','/bbs/list.asp?boardid=13','self',false,'精彩的图片贴在这里,好笑的,漂亮的,令人回味的….',null,'','','',''));
  533. msub4.addsubItem(new mMenuItem(' 超级灌水','/bbs/list.asp?boardid=14','self',false,'超级灌水',null,'','','',''));
  534. mpmenu6.addItem(msub4);
  535. mpmenu6.addItem(new mMenuItem(null,null,null,true));
  536. mpmenu6.addItem(new mMenuItem(' 短消息','/bbs/usersms.asp','self',false,'用户短消息',null,'','','',''));
  537. mpmenu6.addItem(new mMenuItem(' 收藏夹','/bbs/favlist.asp','self',false,'',null,'','','',''));
  538. mpmenu6.addItem(new mMenuItem(' 论坛搜索','/bbs/query.asp?boardid=1','self',false,'论坛搜索',null,'','','',''));
  539. mpmenu6.addItem(new mMenuItem(' 论坛帮助','/bbs/help.asp','blank',false,'论坛帮助',null,'','','',''));
  540. mpmenu6.addItem(new mMenuItem(' 修改资料','/bbs/MYMODIFY.ASP','self',false,'修改资料',null,'','','',''));
  541. mpmenu6.addItem(new mMenuItem(null,null,null,true));
  542. mpmenu6.addItem(new mMenuItem(' FTP 联盟','/Club/ftp/','self',false,'FTP 联盟',null,'','','',''));
  543. mpmenu7=new mMenu('动感社区','','self','','','','');
  544. mpmenu7.addItem(new mMenuItem(' 社区银行','/club/bank/Index.asp','self',false,'e 时代银行',null,'','','',''));
  545. mpmenu7.addItem(new mMenuItem(' 社区赛马','/club/saima/horse.asp','self',false,'赛马',null,'','','',''));
  546. mpmenu7.addItem(new mMenuItem(' 社区排行榜','/iBest/UserBest.asp','self',false,'社区排行榜',null,'','','',''));
  547. mpmenu8=new mMenu('知识问答','/iiTest/','self','','','','');
  548. mpmenu8.addItem(new mMenuItem(' 历史知识','/iiTest/Index.Asp?CateID=1','self',false,'历史知识',null,'','','',''));
  549. mpmenu8.addItem(new mMenuItem(' 电脑知识','/iiTest/Index.Asp?CateID=2','self',false,'电脑知识',null,'','','',''));
  550. mpmenu8.addItem(new mMenuItem(' 文学知识','/iiTest/Index.Asp?CateID=3','self',false,'文学知识',null,'','','',''));
  551. mpmenu8.addItem(new mMenuItem(' 游戏知识','/iiTest/Index.Asp?CateID=4','self',false,'游戏知识',null,'','','',''));
  552. mpmenu8.addItem(new mMenuItem(' 动漫知识','/iiTest/Index.Asp?CateID=5','self',false,'动漫知识',null,'','','',''));
  553. mpmenu8.addItem(new mMenuItem(' 天文地理','/iiTest/Index.Asp?CateID=6','self',false,'天文地理',null,'','','',''));
  554. mpmenu8.addItem(new mMenuItem(' 乐趣英语','/iiTest/Index.Asp?CateID=7','self',false,'乐趣英语',null,'','','',''));
  555. mpmenu8.addItem(new mMenuItem(' 体育知识','/iiTest/Index.Asp?CateID=8','self',false,'体育知识',null,'','','',''));
  556. mpmenu9=new mMenu('站点服务','','self','','','','');
  557. mpmenu9.addItem(new mMenuItem(' 免费邮箱','/WebMail/','self',false,'',null,'','','',''));
  558. mpmenu9.addItem(new mMenuItem(' 免费留言簿','/GuestBook/','self',false,'',null,'','','',''));
  559. mpmenu10=new mMenu('软件超市','','self','','','','');
  560. mpmenu10.addItem(new mMenuItem(' 互联网工具','/SoftMarket/Index.Asp?CateID=1','self',false,'互联网工具',null,'','','',''));
  561. mpmenu10.addItem(new mMenuItem(' 常用工具','/SoftMarket/Index.Asp?CateID=2','self',false,'常用工具',null,'','','',''));
  562. mpmenu10.addItem(new mMenuItem(' 办公与家庭','/SoftMarket/Index.Asp?CateID=3','self',false,'办公与家庭',null,'','','',''));
  563. mpmenu10.addItem(new mMenuItem(' 系统工具','/SoftMarket/Index.Asp?CateID=4','self',false,'系统工具',null,'','','',''));
  564. mpmenu10.addItem(new mMenuItem(' 多媒体软件','/SoftMarket/Index.Asp?CateID=5','self',false,'多媒体软件',null,'','','',''));
  565. mpmenu10.addItem(new mMenuItem(' 设计与制作','/SoftMarket/Index.Asp?CateID=6','self',false,'设计与制作',null,'','','',''));
  566. mpmenu10.addItem(new mMenuItem(' 游戏与娱乐','/SoftMarket/Index.Asp?CateID=7','self',false,'游戏与娱乐',null,'','','',''));
  567. mpmenu10.addItem(new mMenuItem(' 行业软件','/SoftMarket/Index.Asp?CateID=8','self',false,'行业软件',null,'','','',''));
  568. mpmenu10.addItem(new mMenuItem(' 编程与开发','/SoftMarket/Index.Asp?CateID=9','self',false,'编程与开发',null,'','','',''));
  569. mpmenu10.addItem(new mMenuItem(' 桌面风采','/SoftMarket/Index.Asp?CateID=10','self',false,'桌面风采',null,'','','',''));
  570. mpmenu10.addItem(new mMenuItem(' 硬件驱动','/SoftMarket/Index.Asp?CateID=11','self',false,'硬件驱动',null,'','','',''));
  571. mpmenu10.addItem(new mMenuItem(' 其它软件','/SoftMarket/Index.Asp?CateID=12','self',false,'其它软件',null,'','','',''));
  572. mpmenu10.addItem(new mMenuItem(null,null,null,true));
  573. mpmenu10.addItem(new mMenuItem(' 帮助(?)','/SoftMarket/faq.asp','self',false,'系统帮助',null,'','','',''));
  574. mwritetodocument();
  575. </script>
复制代码
H5N1 发表于 2008-12-4 03:55:25 | 显示全部楼层
好长哦                 。
回复

使用道具 举报

檀香东门246 发表于 2008-12-6 01:44:05 | 显示全部楼层
回复

使用道具 举报

莫寂语 发表于 2008-12-6 01:46:29 | 显示全部楼层
好恐怖啊。。
回复

使用道具 举报

jg518 发表于 2008-12-6 02:04:38 | 显示全部楼层
帮顶
就是代码多了些
回复

使用道具 举报

139908154 发表于 2009-3-7 18:59:48 | 显示全部楼层
这里有演示,不错的:http://bbs.winpeedu.com/
回复

使用道具 举报

冷の情 发表于 2012-3-21 02:09:21 | 显示全部楼层
好东西啊下了
回复

使用道具 举报

情深一往 发表于 2012-3-21 02:10:52 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

abcnic 发表于 2012-3-21 08:05:32 | 显示全部楼层
看看演示去  呵呵
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-17 05:27 , Processed in 0.029314 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表