⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jscookmenu_mini.js

📁 Joomla!是一套获得过多个奖项的内容管理系统(Content Management System, CMS)。Joomla!采用PHP+MySQL数据库开发
💻 JS
📖 第 1 页 / 共 2 页
字号:
/*	JSCookMenu v1.4.3.  (c) Copyright 2002-2005 by Heng Yuan	Permission is hereby granted, free of charge, to any person obtaining a	copy of this software and associated documentation files (the "Software"),	to deal in the Software without restriction, including without limitation	the rights to use, copy, modify, merge, publish, distribute, sublicense,	and/or sell copies of the Software, and to permit persons to whom the	Software is furnished to do so, subject to the following conditions:	The above copyright notice and this permission notice shall be included	in all copies or substantial portions of the Software.	THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS	OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,	ITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE	AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER	LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING	FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER	DEALINGS IN THE SOFTWARE.*/var _cmIDCount = 0; var _cmIDName = 'cmSubMenuID'; var _cmTimeOut = null; var _cmCurrentItem = null; var _cmNoAction = new Object (); var _cmNoClick = new Object (); var _cmSplit = new Object (); var _cmItemList = new Array (); var _cmNodeProperties = { mainFolderLeft: '', mainFolderRight: '', mainItemLeft: '', mainItemRight: '', folderLeft: '', folderRight: '', itemLeft: '', itemRight: '', mainSpacing: 0, subSpacing: 0, delay: 500, clickOpen: 1}; function cmNewID (){ return _cmIDName + (++_cmIDCount);}function cmActionItem (item, prefix, isMain, idSub, orient, nodeProperties){ var clickOpen = _cmNodeProperties.clickOpen; if (nodeProperties.clickOpen)clickOpen = nodeProperties.clickOpen; _cmItemList[_cmItemList.length] = item; var index = _cmItemList.length - 1; idSub = (!idSub) ? 'null' : ('\'' + idSub + '\''); orient = '\'' + orient + '\''; prefix = '\'' + prefix + '\''; var onClick = (clickOpen == 3) || (clickOpen == 2 && isMain); var returnStr; if (onClick)returnStr = ' onmouseover="cmItemMouseOver (this,' + prefix + ',' + isMain + ',' + idSub + ',' + index + ')" onmousedown="cmItemMouseDownOpenSub (this,' + index + ',' + prefix + ',' + orient + ',' + idSub + ')"'; elsereturnStr = ' onmouseover="cmItemMouseOverOpenSub (this,' + prefix + ',' + isMain + ',' + idSub + ',' + orient + ',' + index + ')" onmousedown="cmItemMouseDown (this,' + index + ')"'; return returnStr + ' onmouseout="cmItemMouseOut (this,' + nodeProperties.delay + ')" onmouseup="cmItemMouseUp (this,' + index + ')"';}function cmNoClickItem (item, prefix, isMain, idSub, orient, nodeProperties){ _cmItemList[_cmItemList.length] = item; var index = _cmItemList.length - 1; idSub = (!idSub) ? 'null' : ('\'' + idSub + '\''); orient = '\'' + orient + '\''; prefix = '\'' + prefix + '\''; return ' onmouseover="cmItemMouseOver (this,' + prefix + ',' + isMain + ',' + idSub + ',' + index + ')" onmouseout="cmItemMouseOut (this,' + nodeProperties.delay + ')"';}function cmNoActionItem (item, prefix){ return item[1];}function cmSplitItem (prefix, isMain, vertical){ var classStr = 'cm' + prefix; if (isMain){ classStr += 'Main'; if (vertical)classStr += 'HSplit'; elseclassStr += 'VSplit';}elseclassStr += 'HSplit'; return eval (classStr);}function cmDrawSubMenu (subMenu, prefix, id, orient, nodeProperties){ var str = '<div class="' + prefix + 'SubMenu" id="' + id + '"><table summary="sub menu" cellspacing="' + nodeProperties.subSpacing + '" class="' + prefix + 'SubMenuTable">'; var strSub = ''; var item; var idSub; var hasChild; var i; var classStr; for (i = 5; i < subMenu.length; ++i){ item = subMenu[i]; if (!item)continue; hasChild = (item.length > 5); idSub = hasChild ? cmNewID () : null; if (item == _cmSplit)item = cmSplitItem (prefix, 0, true); str += '<tr class="' + prefix + 'MenuItem"'; if (item[0] != _cmNoClick)str += cmActionItem (item, prefix, 0, idSub, orient, nodeProperties); elsestr += cmNoClickItem (item, prefix, 0, idSub, orient, nodeProperties); str += '>'if (item[0] == _cmNoAction || item[0] == _cmNoClick){ str += cmNoActionItem (item, prefix); str += '</tr>'; continue;}classStr = prefix + 'Menu'; classStr += hasChild ? 'Folder' : 'Item'; str += '<td class="' + classStr + 'Left">'; if (item[0] != null)str += item[0]; elsestr += hasChild ? nodeProperties.folderLeft : nodeProperties.itemLeft; str += '</td><td class="' + classStr + 'Text">' + item[1]; str += '</td><td class="' + classStr + 'Right">'; if (hasChild){ str += nodeProperties.folderRight; strSub += cmDrawSubMenu (item, prefix, idSub, orient, nodeProperties);}elsestr += nodeProperties.itemRight; str += '</td></tr>';}str += '</table></div>' + strSub; return str;}function cmDraw (id, menu, orient, nodeProperties, prefix){ var obj = cmGetObject (id); if (!nodeProperties)nodeProperties = _cmNodeProperties; if (!prefix)prefix = ''; var str = '<table summary="main menu" class="' + prefix + 'Menu" cellspacing="' + nodeProperties.mainSpacing + '">'; var strSub = ''; if (!orient)orient = 'hbr'; var orientStr = String (orient); var orientSub; var vertical; if (orientStr.charAt (0) == 'h'){ orientSub = 'v' + orientStr.substr (1, 2); str += '<tr>'; vertical = false;}else{ orientSub = 'v' + orientStr.substr (1, 2); vertical = true;}var i; var item; var idSub; var hasChild; var classStr; for (i = 0; i < menu.length; ++i){ item = menu[i]; if (!item)continue; str += vertical ? '<tr' : '<td'; str += ' class="' + prefix + 'MainItem"'; hasChild = (item.length > 5); idSub = hasChild ? cmNewID () : null; str += cmActionItem (item, prefix, 1, idSub, orient, nodeProperties) + '>'; if (item == _cmSplit)item = cmSplitItem (prefix, 1, vertical); if (item[0] == _cmNoAction || item[0] == _cmNoClick){ str += cmNoActionItem (item, prefix); str += vertical? '</tr>' : '</td>'; continue;}classStr = prefix + 'Main' + (hasChild ? 'Folder' : 'Item'); str += vertical ? '<td' : '<span'; str += ' class="' + classStr + 'Left">'; str += (item[0] == null) ? (hasChild ? nodeProperties.mainFolderLeft : nodeProperties.mainItemLeft): item[0]; str += vertical ? '</td>' : '</span>'; str += vertical ? '<td' : '<span'; str += ' class="' + classStr + 'Text">'; str += item[1]; str += vertical ? '</td>' : '</span>'; str += vertical ? '<td' : '<span'; str += ' class="' + classStr + 'Right">'; str += hasChild ? nodeProperties.mainFolderRight : nodeProperties.mainItemRight; str += vertical ? '</td>' : '</span>'; str += vertical ? '</tr>' : '</td>'; if (hasChild)strSub += cmDrawSubMenu (item, prefix, idSub, orientSub, nodeProperties);}if (!vertical)str += '</tr>'; str += '</table>' + strSub; obj.innerHTML = str;}function cmDrawFromText (id, orient, nodeProperties, prefix){ var domMenu = cmGetObject (id); var menu = null; for (var currentDomItem = domMenu.firstChild; currentDomItem; currentDomItem = currentDomItem.nextSibling){ if (!currentDomItem.tagName || currentDomItem.tagName.toLowerCase () != 'ul')continue; menu = cmDrawFromTextSubMenu (currentDomItem); break;}if (menu)cmDraw (id, menu, orient, nodeProperties, prefix);}function cmDrawFromTextSubMenu (domMenu){ var items = new Array (); for (var currentDomItem = domMenu.firstChild; currentDomItem; currentDomItem = currentDomItem.nextSibling){ if (!currentDomItem.tagName || currentDomItem.tagName.toLowerCase () != 'li')continue; if (currentDomItem.firstChild == null){ items[items.length] = _cmSplit; continue;}var item = new Array (); var currentItem = currentDomItem.firstChild; for (; currentItem; currentItem = currentItem.nextSibling){ if (!currentItem.tagName || currentItem.tagName.toLowerCase () != 'span')continue; if (!currentItem.firstChild)item[0] = null; elseitem[0] = currentItem.innerHTML; break;}if (!currentItem)continue; for (; currentItem; currentItem = currentItem.nextSibling){ if (!currentItem.tagName || currentItem.tagName.toLowerCase () != 'a')continue; item[1] = currentItem.innerHTML; item[2] = currentItem.href; item[3] = currentItem.target; item[4] = currentItem.title; if (item[4] == '')item[4] = null; break;}for (; currentItem; currentItem = currentItem.nextSibling){ if (!currentItem.tagName || currentItem.tagName.toLowerCase () != 'ul')continue; var subMenuItems = cmDrawFromTextSubMenu (currentItem); for (i = 0; i < subMenuItems.length; ++i)item[i + 5] = subMenuItems[i]; break;}items[items.length] = item;}return items;}function cmItemMouseOver (obj, prefix, isMain, idSub, index){ clearTimeout (_cmTimeOut); if (!obj.cmPrefix){ obj.cmPrefix = prefix; obj.cmIsMain = isMain;}var thisMenu = cmGetThisMenu (obj, prefix); if (!thisMenu.cmItems)thisMenu.cmItems = new Array (); var i; for (i = 0; i < thisMenu.cmItems.length; ++i){ if (thisMenu.cmItems[i] == obj)break;}if (i == thisMenu.cmItems.length){ thisMenu.cmItems[i] = obj;}if (_cmCurrentItem){ if (_cmCurrentItem == obj || _cmCurrentItem == thisMenu){ var item = _cmItemList[index]; cmSetStatus (item); return;}var thatPrefix = _cmCurrentItem.cmPrefix; var thatMenu = cmGetThisMenu (_cmCurrentItem, thatPrefix); if (thatMenu != thisMenu.cmParentMenu){ if (_cmCurrentItem.cmIsMain)_cmCurrentItem.className = thatPrefix + 'MainItem'; else_cmCurrentItem.className = thatPrefix + 'MenuItem'; if (thatMenu.id != idSub)cmHideMenu (thatMenu, thisMenu, thatPrefix);}}_cmCurrentItem = obj; cmResetMenu (thisMenu, prefix); var item = _cmItemList[index]; var isDefaultItem = cmIsDefaultItem (item); if (isDefaultItem){ if (isMain)obj.className = prefix + 'MainItemHover'; elseobj.className = prefix + 'MenuItemHover';}cmSetStatus (item);}function cmItemMouseOverOpenSub (obj, prefix, isMain, idSub, orient, index){ cmItemMouseOver (obj, prefix, isMain, idSub, index); if (idSub){ var subMenu = cmGetObject (idSub); cmShowSubMenu (obj, prefix, subMenu, orient);}}function cmItemMouseOut (obj, delayTime){ if (!delayTime)delayTime = _cmNodeProperties.delay; _cmTimeOut = window.setTimeout ('cmHideMenuTime ()', delayTime); window.defaultStatus = '';}function cmItemMouseDown (obj, index){ if (cmIsDefaultItem (_cmItemList[index])){ if (obj.cmIsMain)obj.className = obj.cmPrefix + 'MainItemActive'; elseobj.className = obj.cmPrefix + 'MenuItemActive';}}function cmItemMouseDownOpenSub (obj, index, prefix, orient, idSub){ cmItemMouseDown (obj, index); if (idSub){ var subMenu = cmGetObject (idSub); cmShowSubMenu (obj, prefix, subMenu, orient);}}function cmItemMouseUp (obj, index){ var item = _cmItemList[index]; var link = null, target = '_self'; if (item.length > 2)link = item[2]; if (item.length > 3 && item[3])target = item[3]; if (link != null)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -