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

📄 jscookmenu.js

📁 this the oscommerce 3.0 aplha 4
💻 JS
📖 第 1 页 / 共 3 页
字号:
			catch (e)			{				forceShow = true;				subMenu.cmEffect = null;			}		}		else			forceShow = true;		if (forceShow)		{			subMenu.style.visibility = 'visible';			/*@cc_on				@if (@_jscript_version >= 5.5)					if (subMenu.cmFrameObj)						subMenu.cmFrameObj.style.display = 'block';				@end			@*/		}	}	if (!_cmHideObjects)	{		_cmHideObjects = 2;	// default = not hide, may change behavior later		try		{			if (window.opera)			{				if (parseInt (navigator.appVersion) < 9)					_cmHideObjects = 1;			}		}		catch (e)		{		}	}	if (_cmHideObjects == 1)	{		if (!subMenu.cmOverlap)			subMenu.cmOverlap = new Array ();		cmHideControl ("IFRAME", subMenu);		cmHideControl ("OBJECT", subMenu);	}}//// reset all the menu items to class MenuItem in thisMenu//function cmResetMenu (thisMenu, prefix){	if (thisMenu.cmItems)	{		var i;		var str;		var items = thisMenu.cmItems;		for (i = 0; i < items.length; ++i)		{			if (items[i].cmIsMain)			{				if (items[i].className == (prefix + 'MainItemDisabled'))					continue;			}			else			{				if (items[i].className == (prefix + 'MenuItemDisabled'))					continue;			}			if (items[i].cmIsMain)				str = prefix + 'MainItem';			else				str = prefix + 'MenuItem';			if (items[i].className != str)				items[i].className = str;		}	}}//// called by the timer to hide the menu//function cmHideMenuTime (){	_cmClicked = false;	if (_cmCurrentItem)	{		var menuInfo = _cmMenuList[_cmCurrentItem.cmMenuID];		var prefix = menuInfo.prefix;		cmHideMenu (cmGetThisMenu (_cmCurrentItem, prefix), null, menuInfo);		_cmCurrentItem = null;	}}//// Only hides this menu//function cmHideThisMenu (thisMenu, menuInfo){	var effectInstance = thisMenu.cmEffect;	if (effectInstance)		effectInstance.hideEffect (true);	else	{		thisMenu.style.visibility = 'hidden';		thisMenu.style.top = '0px';		thisMenu.style.left = '0px';		thisMenu.cmOrient = null;		/*@cc_on			@if (@_jscript_version >= 5.5)				if (thisMenu.cmFrameObj)				{					var frameObj = thisMenu.cmFrameObj;					frameObj.style.display = 'none';					frameObj.style.width = '1px';					frameObj.style.height = '1px';					thisMenu.cmFrameObj = null;					cmFreeFrame (frameObj);				}			@end		@*/	}	cmShowControl (thisMenu);	thisMenu.cmItems = null;}//// hide thisMenu, children of thisMenu, as well as the ancestor// of thisMenu until currentMenu is encountered.  currentMenu// will not be hidden//function cmHideMenu (thisMenu, currentMenu, menuInfo){	var prefix = menuInfo.prefix;	var str = prefix + 'SubMenu';	// hide the down stream menus	if (thisMenu.cmSubMenu)	{		var i;		for (i = 0; i < thisMenu.cmSubMenu.length; ++i)		{			cmHideSubMenu (thisMenu.cmSubMenu[i], menuInfo);		}	}	// hide the upstream menus	while (thisMenu && thisMenu != currentMenu)	{		cmResetMenu (thisMenu, prefix);		if (thisMenu.className == str)		{			cmHideThisMenu (thisMenu, menuInfo);		}		else			break;		thisMenu = cmGetThisMenu (thisMenu.cmParentMenu, prefix);	}}//// hide thisMenu as well as its sub menus if thisMenu is not// already hidden//function cmHideSubMenu (thisMenu, menuInfo){	if (thisMenu.style.visibility == 'hidden')		return;	if (thisMenu.cmSubMenu)	{		var i;		for (i = 0; i < thisMenu.cmSubMenu.length; ++i)		{			cmHideSubMenu (thisMenu.cmSubMenu[i], menuInfo);		}	}	var prefix = menuInfo.prefix;	cmResetMenu (thisMenu, prefix);	cmHideThisMenu (thisMenu, menuInfo);}//// hide a control such as IFRAME//function cmHideControl (tagName, subMenu){	var x = cmGetX (subMenu);	var y = cmGetY (subMenu);	var w = subMenu.offsetWidth;	var h = subMenu.offsetHeight;	var i;	for (i = 0; i < document.all.tags(tagName).length; ++i)	{		var obj = document.all.tags(tagName)[i];		if (!obj || !obj.offsetParent)			continue;		// check if the object and the subMenu overlap		var ox = cmGetX (obj);		var oy = cmGetY (obj);		var ow = obj.offsetWidth;		var oh = obj.offsetHeight;		if (ox > (x + w) || (ox + ow) < x)			continue;		if (oy > (y + h) || (oy + oh) < y)			continue;		// if object is already made hidden by a different		// submenu then we dont want to put it on overlap list of		// of a submenu a second time.		// - bug fixed by Felix Zaslavskiy		if(obj.style.visibility == 'hidden')			continue;		//subMenu.cmOverlap.push (obj);		subMenu.cmOverlap[subMenu.cmOverlap.length] = obj;		obj.style.visibility = 'hidden';	}}//// show the control hidden by the subMenu//function cmShowControl (subMenu){	if (subMenu.cmOverlap)	{		var i;		for (i = 0; i < subMenu.cmOverlap.length; ++i)			subMenu.cmOverlap[i].style.visibility = "";	}	subMenu.cmOverlap = null;}//// returns the main menu or the submenu table where this obj (menu item)// is in//function cmGetThisMenu (obj, prefix){	var str1 = prefix + 'SubMenu';	var str2 = prefix + 'Menu';	while (obj)	{		if (obj.className == str1 || obj.className == str2)			return obj;		obj = obj.parentNode;	}	return null;}//// A special effect function to hook the menu which contains// special effect object to the timer.//function cmTimeEffect (menuID, show, delayTime){	window.setTimeout ('cmCallEffect("' + menuID + '",' + show + ')', delayTime);}//// A special effect function.  Called by timer.//function cmCallEffect (menuID, show){	var menu = cmGetObject (menuID);	if (!menu || !menu.cmEffect)		return;	try	{		if (show)			menu.cmEffect.showEffect (false);		else			menu.cmEffect.hideEffect (false);	}	catch (e)	{	}}//// return true if this item is handled using default handlers//function cmIsDefaultItem (item){	if (item == _cmSplit || item[0] == _cmNoAction || item[0] == _cmNoClick)		return false;	return true;}//// returns the object baring the id//function cmGetObject (id){	if (document.all)		return document.all[id];	return document.getElementById (id);}//// functions that obtain the width of an HTML element.//function cmGetWidth (obj){	var width = obj.offsetWidth;	if (width > 0 || !cmIsTRNode (obj))		return width;	if (!obj.firstChild)		return 0;	// use TABLE's length can cause an extra pixel gap	//return obj.parentNode.parentNode.offsetWidth;	// use the left and right child instead	return obj.lastChild.offsetLeft - obj.firstChild.offsetLeft + cmGetWidth (obj.lastChild);}//// functions that obtain the height of an HTML element.//function cmGetHeight (obj){	var height = obj.offsetHeight;	if (height > 0 || !cmIsTRNode (obj))		return height;	if (!obj.firstChild)		return 0;	// use the first child's height	return obj.firstChild.offsetHeight;}//// functions that obtain the coordinates of an HTML element//function cmGetX (obj){	if (!obj)		return 0;	var x = 0;	do	{		x += obj.offsetLeft;		obj = obj.offsetParent;	}	while (obj);	return x;}function cmGetXAt (obj, elm){	var x = 0;	while (obj && obj != elm)	{		x += obj.offsetLeft;		obj = obj.offsetParent;	}	if (obj == elm)		return x;	return x - cmGetX (elm);}function cmGetY (obj){	if (!obj)		return 0;	var y = 0;	do	{		y += obj.offsetTop;		obj = obj.offsetParent;	}	while (obj);	return y;}function cmIsTRNode (obj){	var tagName = obj.tagName;	return tagName == "TR" || tagName == "tr" || tagName == "Tr" || tagName == "tR";}//// get the Y position of the object.  In case of TR element though,// we attempt to adjust the value.//function cmGetYAt (obj, elm){	var y = 0;	if (!obj.offsetHeight && cmIsTRNode (obj))	{		var firstTR = obj.parentNode.firstChild;		obj = obj.firstChild;		y -= firstTR.firstChild.offsetTop;	}	while (obj && obj != elm)	{		y += obj.offsetTop;		obj = obj.offsetParent;	}	if (obj == elm)		return y;	return y - cmGetY (elm);}//// extract description from the menu item and set the status text//function cmSetStatus (item){	var descript = '';	if (item.length > 4)		descript = (item[4] != null) ? item[4] : (item[2] ? item[2] : descript);	else if (item.length > 2)		descript = (item[2] ? item[2] : descript);	window.defaultStatus = descript;}//// debug function, ignore :)//function cmGetProperties (obj){	if (obj == undefined)		return 'undefined';	if (obj == null)		return 'null';	var msg = obj + ':\n';	var i;	for (i in obj)		msg += i + ' = ' + obj[i] + '; ';	return msg;}/* v2.0.3			1. Fix an issue with IE6 displaying menu over HTTPS connection.						Thanks to Paul Horton for reporting the bug and testing						possible solutions. *//* v2.0.2			1. Minor clean up and some attempts to reduce memory leak in IE. *//* v2.0.1			1. Disable iframe masking for IE7 since it is no longer necessary. *//* v2.0				1. improves the way handling flash/iframe/select boxes in IE						and firefox and Opera 9.  Hiding these elements is no						longer necessary.  For older versions of Opera, flash/iframe						still need to be hidden.					2. Improves cmDrawFromText ().  Also allows custom actions.					3. Improves clickOpen behavior.  Now once a submenu is opened,						opening other sub menus no longer requires clicking.					4. Special Effects.  This version has hooks that allow people						to install special effects to various themes.					5. For a given menu item, cmGetMenuitem(item) provides the ability						to find the corresponding DOM element.					6. Disable API.  If you know which item to disable, you can call						cmDisableItem(item, themePrefix) and cmEnableItem(item, themePrefix).						However, you will have to provide your own CSS for the item.						For purposes other than to disable an item, cmGetMenuItem (item)						is provided for locating HTML DOM element of the menu item in concern.					7. Better z-index.  Now you can specify in the theme property the						starting z-index and incremental step for submenus.					8. Allow themes to insert additional elements before and after						the sub menu table.					9. Improved themes.  More organized and easier to customize.					10. Add a flag to control hiding/nohiding objects/iframes.  By default,						only Opera before 9 hides objects.					11. Add new property options to control submenu positions to fine tune						the look.					12. It is no longer necessary to specify the theme name while calling						cmDraw and cmDrawFromText.  Currently it still accepts it, but it						will not in the future.*//* v1.4.4			1. a quick fix for a bug for _cmSplit checking.  reported by						Son Nguyen.*//* v1.4.3			1. changed how _cmSplit is handled a bit so that _cmNoClick can work						properly.  All splits in predefined themes are changed to use						_cmNoClick instead of _cmNoAction.*//* v1.4.2			1. fixed _cmNoClick mouse hoover bug.					2. fixed a statusbar text problem that cause text to disappear when						hoovering mouse within the same menu item.					3. changed the behavior of cmDrawFromText s.t. if the title of the						of a link is empty, the actual url is used as text.  To clear						this link information, title needs to be ' '.*//* v1.4.1			1. fixed a problem introduced in 1.4 where re-entering a main menu						item which doesn't have a child can disable its hover setting.						Apparently I deleted an extra line of code when I was doing						cleaning up.  Reported by David Maliachi and a few others.*//* JSCookMenu v1.4	1. fixed a minor td cell closure problem.  Thanks to Georg Lorenz					   <georg@lonux.de> for discovering that.					2. added clickOpen to nodeProperties.  See _cmNodeProperties for						description.  Basically menus can be opened on click only.					3. added an ability to draw menu from an html node instead of a javascript						tree, making this script search bot friendly (I hope?).*//* JSCookMenu v1.31 1. fix a bug on IE with causes submenus to display at the top					   left corner due to doctype.  The fix was provided by					   Burton Strauss <Burton@ntopsupport.com>.*//* JSCookMenu v1.3	1. automatically realign (left and right) the submenu when					   client space is not enough.					2. add _cmNoClick to get rid of menu closing behavior					   on the particular menu item, to make it possible for things					   such as search box to be inside the menu.*//* JSCookMenu v1.25	1. fix Safari positioning issue.  The problem is that all TR elements are located					   at the top left corner.  Thus, need to obtain the "virtual"					   position of these element could be at.*//* JSCookMenu v1.24	1. fix window based control hiding bug					   thanks to Felix Zaslavskiy <felix@bebinary.com> for the fix.*//* JSCookMenu v1.23	1. correct a position bug when the container is positioned.					  thanks to Andre <anders@netspace.net.au> for narrowing down					  the problem.*//* JSCookMenu v1.22	1. change Array.push (obj) call to Array[length] = obj.					   Suggestion from Dick van der Kaaden <dick@netrex.nl> to					   make the script compatible with IE 5.0					2. Changed theme files a little to add z-index: 100 for sub					   menus.  This change is necessary for Netscape to avoid					   a display problem.					3. some changes to the DOM structure to make this menu working					   on Netscape 6.0 (tested).  The main reason is that NN6 does					   not do absolute positioning with tables.  Therefore an extra					   div layer must be put around the table.*//* JSCookMenu v1.21	1. fixed a bug that didn't add 'px' as part of coordinates.					   JSCookMenu should be XHTML validator friendly now.					2. removed unnecessary display attribute and corresponding					   theme entry to fix a problem that Netscape sometimes					   render Office theme incorrectly*//* JSCookMenu v1.2.	1. fix the problem of showing status in Netscape					2. changed the handler parameters a bit to allow					   string literals to be passed to javascript based					   links					3. having null in target field would cause the link					   to be opened in the current window, but this behavior					   could change in the future releases*//* JSCookMenu v1.1.		added ability to hide controls in IE to show submenus properly *//* JSCookMenu v1.01.	cmDraw generates XHTML code *//* JSCookMenu v1.0.		(c) Copyright 2002 by Heng Yuan */

⌨️ 快捷键说明

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