SpryMenuBar.js
上传用户:szhf331
上传日期:2022-06-22
资源大小:1032k
文件大小:10k
源码类别:

行业应用

开发平台:

JavaScript

  1. /* SpryMenuBar.js - Revision: Spry Preview Release 1.4 */
  2. // Copyright (c) 2006. Adobe Systems Incorporated.
  3. // All rights reserved.
  4. //
  5. // Redistribution and use in source and binary forms, with or without
  6. // modification, are permitted provided that the following conditions are met:
  7. //
  8. //   * Redistributions of source code must retain the above copyright notice,
  9. //     this list of conditions and the following disclaimer.
  10. //   * Redistributions in binary form must reproduce the above copyright notice,
  11. //     this list of conditions and the following disclaimer in the documentation
  12. //     and/or other materials provided with the distribution.
  13. //   * Neither the name of Adobe Systems Incorporated nor the names of its
  14. //     contributors may be used to endorse or promote products derived from this
  15. //     software without specific prior written permission.
  16. //
  17. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  18. // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  21. // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  22. // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  23. // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  24. // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  25. // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  26. // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  27. // POSSIBILITY OF SUCH DAMAGE.
  28. /*******************************************************************************
  29.  SpryMenuBar.js
  30.  This file handles the JavaScript for Spry Menu Bar.  You should have no need
  31.  to edit this file.  Some highlights of the MenuBar object is that timers are
  32.  used to keep submenus from showing up until the user has hovered over the parent
  33.  menu item for some time, as well as a timer for when they leave a submenu to keep
  34.  showing that submenu until the timer fires.
  35.  *******************************************************************************/
  36. var Spry;
  37. if(!Spry)
  38. {
  39. Spry = {};
  40. }
  41. if(!Spry.Widget)
  42. {
  43. Spry.Widget = {};
  44. }
  45. // Constructor for Menu Bar
  46. // element should be an ID of an unordered list (<ul> tag)
  47. // preloadImage1 and preloadImage2 are images for the rollover state of a menu
  48. Spry.Widget.MenuBar = function(element, opts)
  49. {
  50. this.init(element, opts);
  51. };
  52. Spry.Widget.MenuBar.prototype.init = function(element, opts)
  53. {
  54. this.element = this.getElement(element);
  55. // represents the current (sub)menu we are operating on
  56. this.currMenu = null;
  57. var isie = (typeof document.all != 'undefined' && typeof window.opera == 'undefined' && navigator.vendor != 'KDE');
  58. if(typeof document.getElementById == 'undefined' || (navigator.vendor == 'Apple Computer, Inc.' && typeof window.XMLHttpRequest == 'undefined') || (isie && typeof document.uniqueID == 'undefined'))
  59. {
  60. // bail on older unsupported browsers
  61. return;
  62. }
  63. // load hover images now
  64. if(opts)
  65. {
  66. for(var k in opts)
  67. {
  68. var rollover = new Image;
  69. rollover.src = opts[k];
  70. }
  71. }
  72. if(this.element)
  73. {
  74. this.currMenu = this.element;
  75. var items = this.element.getElementsByTagName('li');
  76. for(var i=0; i<items.length; i++)
  77. {
  78. this.initialize(items[i], element, isie);
  79. if(isie)
  80. {
  81. this.addClassName(items[i], "MenuBarItemIE");
  82. items[i].style.position = "static";
  83. }
  84. }
  85. if(isie)
  86. {
  87. if(this.hasClassName(this.element, "MenuBarVertical"))
  88. {
  89. this.element.style.position = "relative";
  90. }
  91. var this.items = this.element.getElementsByTagName('a');
  92. for(var i=0; i<this.items.length; i++)
  93. {
  94. this.items[i].style.position = "relative";
  95. }
  96. }
  97. }
  98. };
  99. Spry.Widget.MenuBar.prototype.getElement = function(ele)
  100. {
  101. if (ele && typeof ele == "string")
  102. return document.getElementById(ele);
  103. return ele;
  104. };
  105. Spry.Widget.MenuBar.prototype.hasClassName = function(ele, className)
  106. {
  107. if (!ele || !className || !ele.className || ele.className.search(new RegExp("\b" + className + "\b")) == -1)
  108. {
  109. return false;
  110. }
  111. return true;
  112. };
  113. Spry.Widget.MenuBar.prototype.addClassName = function(ele, className)
  114. {
  115. if (!ele || !className || this.hasClassName(ele, className))
  116. return;
  117. ele.className += (ele.className ? " " : "") + className;
  118. };
  119. Spry.Widget.MenuBar.prototype.removeClassName = function(ele, className)
  120. {
  121. if (!ele || !className || !this.hasClassName(ele, className))
  122. return;
  123. ele.className = ele.className.replace(new RegExp("\s*\b" + className + "\b", "g"), "");
  124. };
  125. // addEventListener for Menu Bar
  126. // attach an event to a tag without creating obtrusive HTML code
  127. Spry.Widget.MenuBar.prototype.addEventListener = function(element, eventType, handler, capture)
  128. {
  129. try
  130. {
  131. if (element.addEventListener)
  132. {
  133. element.addEventListener(eventType, handler, capture);
  134. }
  135. else if (element.attachEvent)
  136. {
  137. element.attachEvent('on' + eventType, handler);
  138. }
  139. }
  140. catch (e) {}
  141. };
  142. // createIframeLayer for Menu Bar
  143. // creates an IFRAME underneath a menu so that it will show above form controls and ActiveX
  144. Spry.Widget.MenuBar.prototype.createIframeLayer = function(menu)
  145. {
  146. var layer = document.createElement('iframe');
  147. layer.tabIndex = '-1';
  148. layer.src = 'javascript:false;';
  149. menu.parentNode.appendChild(layer);
  150. layer.style.left = menu.offsetLeft + 'px';
  151. layer.style.top = menu.offsetTop + 'px';
  152. layer.style.width = menu.offsetWidth + 'px';
  153. layer.style.height = menu.offsetHeight + 'px';
  154. };
  155. // removeIframeLayer for Menu Bar
  156. // removes an IFRAME underneath a menu to reveal any form controls and ActiveX
  157. Spry.Widget.MenuBar.prototype.removeIframeLayer =  function(menu)
  158. {
  159. var layers = menu.parentNode.getElementsByTagName('iframe');
  160. while(layers.length > 0)
  161. {
  162. layers[0].parentNode.removeChild(layers[0]);
  163. }
  164. };
  165. // clearMenus for Menu Bar
  166. // root is the top level unordered list (<ul> tag)
  167. Spry.Widget.MenuBar.prototype.clearMenus = function(root)
  168. {
  169. var menus = root.getElementsByTagName('ul');
  170. for(var i=0; i<menus.length; i++)
  171. {
  172. this.hideSubmenu(menus[i]);
  173. }
  174. this.removeClassName(this.element, "MenuBarActive");
  175. };
  176. // bubbledTextEvent for Menu Bar
  177. // identify bubbled up text events in Safari so we can ignore them
  178. Spry.Widget.MenuBar.prototype.bubbledTextEvent = function()
  179. {
  180. return (navigator.vendor == 'Apple Computer, Inc.' && (event.target == event.relatedTarget.parentNode || (event.eventPhase == 3 && event.target.parentNode == event.relatedTarget)));
  181. };
  182. // showSubmenu for Menu Bar
  183. // set the proper CSS class on this menu to show it
  184. Spry.Widget.MenuBar.prototype.showSubmenu = function(menu)
  185. {
  186. if(this.currMenu)
  187. {
  188. this.clearMenus(this.currMenu);
  189. this.currMenu = null;
  190. }
  191. if(menu)
  192. {
  193. this.addClassName(menu, "MenuBarSubmenuVisible");
  194. if(typeof document.all != 'undefined' && typeof window.opera == 'undefined' && navigator.vendor != 'KDE')
  195. {
  196. if(!this.hasClassName(this.element, "MenuBarHorizontal") || menu.parentNode.parentNode != this.element)
  197. {
  198. menu.style.top = menu.parentNode.offsetTop + 'px';
  199. }
  200. }
  201. if(typeof document.uniqueID != "undefined")
  202. {
  203. this.createIframeLayer(menu);
  204. }
  205. }
  206. this.addClassName(this.element, "MenuBarActive");
  207. };
  208. // hideSubmenu for Menu Bar
  209. // remove the proper CSS class on this menu to hide it
  210. Spry.Widget.MenuBar.prototype.hideSubmenu = function(menu)
  211. {
  212. if(menu)
  213. {
  214. this.removeClassName(menu, "MenuBarSubmenuVisible");
  215. if(typeof document.all != 'undefined' && typeof window.opera == 'undefined' && navigator.vendor != 'KDE')
  216. {
  217. menu.style.top = '';
  218. menu.style.left = '';
  219. }
  220. this.removeIframeLayer(menu);
  221. }
  222. };
  223. // initialize for Menu Bar
  224. // create event listeners for the Menu Bar widget so we can properly
  225. // show and hide submenus
  226. Spry.Widget.MenuBar.prototype.initialize = function(listitem, element, isie)
  227. {
  228. var opentime, closetime;
  229. var this. = listitem.getElementsByTagName('a')[0];
  230. var submenus = listitem.getElementsByTagName('ul');
  231. var menu = (submenus.length > 0 ? submenus[0] : null);
  232. var hasSubMenu = false;
  233. if(menu)
  234. {
  235. this.addClassName(this., "MenuBarItemSubmenu");
  236. hasSubMenu = true;
  237. }
  238. if(!isie)
  239. {
  240. // define a simple function that comes standard in IE to determine
  241. // if a node is within another node
  242. listitem.contains = function(testNode)
  243. {
  244. // this refers to the list item
  245. if(testNode == null)
  246. {
  247. return false;
  248. }
  249. if(testNode == this)
  250. {
  251. return true;
  252. }
  253. else
  254. {
  255. return this.contains(testNode.parentNode);
  256. }
  257. };
  258. }
  259. // need to save this for scope further down
  260. var self = this;
  261. this.addEventListener(listitem, 'mouseover', function(e)
  262. {
  263. if(self.bubbledTextEvent())
  264. {
  265. // ignore bubbled text events
  266. return;
  267. }
  268. clearTimeout(closetime);
  269. if(self.currMenu == listitem)
  270. {
  271. self.currMenu = null;
  272. }
  273. // show menu highlighting
  274. self.addClassName(this., hasSubMenu ? "MenuBarItemSubmenuHover" : "MenuBarItemHover");
  275. if(menu && !self.hasClassName(menu, "MenuBarSubmenuVisible"))
  276. {
  277. opentime = window.setTimeout(function(){self.showSubmenu(menu);}, 250);
  278. }
  279. }, false);
  280. this.addEventListener(listitem, 'mouseout', function(e)
  281. {
  282. if(self.bubbledTextEvent())
  283. {
  284. // ignore bubbled text events
  285. return;
  286. }
  287. var related = (typeof e.relatedTarget != 'undefined' ? e.relatedTarget : e.toElement);
  288. if(!listitem.contains(related))
  289. {
  290. clearTimeout(opentime);
  291. self.currMenu = listitem;
  292. // remove menu highlighting
  293. self.removeClassName(this., hasSubMenu ? "MenuBarItemSubmenuHover" : "MenuBarItemHover");
  294. if(menu)
  295. {
  296. closetime = window.setTimeout(function(){self.hideSubmenu(menu);}, 600);
  297. }
  298. }
  299. }, false);
  300. };