Advertisement
Guest User

Untitled

a guest
Sep 20th, 2021
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.50 KB | None | 0 0
  1.  
  2. / Implements the hamburger menu behaviour
  3.  
  4. @since 4.8 moved from avia.js to own file as some user request to customize this feature /
  5. (function($)
  6. {
  7. “use strict”;
  8.  
  9. $(document).ready( function()
  10. {
  11. $.avia_utilities = $.avia_utilities || {};
  12.  
  13. if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && ‘ontouchstart’ in document.documentElement )
  14. {
  15. $.avia_utilities.isMobile = true;
  16. }
  17. else
  18. {
  19. $.avia_utilities.isMobile = false;
  20. }
  21.  
  22. //activates the hamburger mobile menu
  23. avia_hamburger_menu();
  24.  
  25. });
  26.  
  27. $.avia_utilities = $.avia_utilities || {};
  28.  
  29. function avia_hamburger_menu()
  30. {
  31. var header = $(‘#header’),
  32. header_main = $(‘#main .av-logo-container’), //check if we got a top menu that is above the header
  33. menu = $(‘#avia-menu’),
  34. burger_wrap = $(‘.av-burger-menu-main a’),
  35. htmlEL = $(‘html’).eq(0),
  36. overlay = $(‘<div class=”av-burger-overlay”></div>’),
  37. overlay_scroll = $(‘<div class=”av-burger-overlay-scroll”></div>’).appendTo(overlay),
  38. inner_overlay = $(‘<div class=”av-burger-overlay-inner”></div>’).appendTo(overlay_scroll),
  39. bgColor = $(‘<div class=”av-burger-overlay-bg”></div>’).appendTo(overlay),
  40. animating = false,
  41. first_level = {},
  42. logo_container = $(‘.av-logo-container .inner-container’),
  43. menu_in_logo_container = logo_container.find(‘.main_menu’),
  44. cloneFirst = htmlEL.is(‘.html_av-submenu-display-click.html_av-submenu-clone, .html_av-submenu-display-hover.html_av-submenu-clone’),
  45. menu_generated = false,
  46. cloned_menu_cnt = 0;
  47.  
  48. /**
  49. * Check for alternate mobile menu
  50. */
  51. var alternate = $(‘#avia_alternate_menu’);
  52. if( alternate.length > 0 )
  53. {
  54. menu = alternate;
  55. }
  56.  
  57. var set_list_container_height = function()
  58. {
  59. //necessary for ios since the height is usually not 100% but 100% – menu bar which can be requested by window.innerHeight
  60. if($.avia_utilities.isMobile)
  61. {
  62. overlay_scroll.outerHeight(window.innerHeight);
  63. }
  64. },
  65. create_list = function( items , append_to )
  66. {
  67. if(!items) return;
  68.  
  69. var list, link, current, subitems, megacolumns, sub_current, sub_current_list, new_li, new_ul;
  70.  
  71. items.each(function()
  72. {
  73. current = $(this);
  74. subitems = current.find(‘ > .sub-menu > li’); //find sublists of a regular defined menu
  75. if( subitems.length == 0 )
  76. {
  77. subitems = current.find(‘ > .children > li’); //find sublists of a fallback menu
  78. }
  79. megacolumns = current.find( ‘.avia_mega_div > .sub-menu > li.menu-item’ );
  80.  
  81. // href = ‘#’: we have a custom link that should not link to something – is also in use by megamenu for titles
  82. var cur_menu = current.find(‘>a’);
  83. var clone_events = true;
  84.  
  85. if( cur_menu.length )
  86. {
  87. if( cur_menu.get(0).hash == ‘#’ || ‘undefined’ == typeof cur_menu.attr(‘href’) || cur_menu.attr(‘href’) == ‘#’ )
  88. {
  89. // eventhandler conflict ‘click’ by megamenu (returns false) – ignore all handlers
  90. if( subitems.length > 0 || megacolumns.length > 0 )
  91. {
  92. clone_events = false;
  93. }
  94. }
  95. }
  96.  
  97. link = cur_menu.clone(clone_events).attr(‘style’,”);
  98.  
  99. // megamenus can have ” as url in top menu – allow click event in burger
  100. if( ‘undefined’ == typeof cur_menu.attr(‘href’) )
  101. {
  102. link.attr( ‘href’, ‘#’ );
  103. }
  104.  
  105. new_li = $(‘
  106. <li>&#8216;).append( link ); // Copy user set classes for menu items &#8211; these must not start with menu-item, page-item, page_item (used by default classes)
  107. var cls = [];
  108. if( &#8216;undefined&#8217; != typeof current.attr(&#8216;class&#8217;) )
  109. {
  110. cls = current.attr(&#8216;class&#8217;).split(/\s+/);
  111. $.each( cls, function( index, value ){
  112. if( ( value.indexOf(&#8216;menu-item&#8217;) != 0 ) &amp;&amp; ( value.indexOf(&#8216;page-item&#8217;) &lt; 0 ) &amp;&amp; ( value.indexOf(&#8216;page_item&#8217;) != 0 ) &amp;&amp; ( value.indexOf(&#8216;dropdown_ul&#8217;) &lt; 0 ) )
  113. {
  114. // &#8216;current-menu-item&#8217; is also copied !!
  115. new_li.addClass( value );
  116. }
  117. return true;
  118. });
  119. }
  120.  
  121. if( &#8216;undefined&#8217; != typeof current.attr(&#8216;id&#8217;) &amp;&amp; &#8221; != current.attr(&#8216;id&#8217;) )
  122. {
  123. new_li.addClass(current.attr(&#8216;id&#8217;));
  124. }
  125. else
  126. {
  127. // fallback menu has no id -&gt; try to find page id in class
  128. $.each( cls, function( index, value ){
  129. if( value.indexOf(&#8216;page-item-&#8216;) &gt;= 0 )
  130. {
  131. new_li.addClass(value);
  132. return false;
  133. }
  134. });
  135. }
  136.  
  137. append_to.append(new_li);
  138.  
  139. if(subitems.length)
  140. {
  141. new_ul = $(&#8216;&lt;ul class=&#8221;sub-menu&#8221;&gt;&#8217;).appendTo(new_li);
  142.  
  143. if(cloneFirst &amp;&amp; ( link.get(0).hash != &#8216;#&#8217; &amp;&amp; link.attr(&#8216;href&#8217;) != &#8216;#&#8217; ))
  144. {
  145. new_li.clone(true).prependTo(new_ul);
  146. }
  147.  
  148. new_li.addClass(&#8216;av-width-submenu&#8217;).find(&#8216;&gt;a&#8217;).append(&#8216;&lt;span class=&#8221;av-submenu-indicator&#8221;&gt;&#8217;);
  149.  
  150. create_list( subitems , new_ul);
  151. }
  152. else if(megacolumns.length) //if we got no normal sublists try megamenu columns and sublists
  153. {
  154. new_ul = $(&#8216;&lt;ul class=&#8221;sub-menu&#8221;&gt;&#8217;).appendTo(new_li);
  155.  
  156. if(cloneFirst &amp;&amp; ( link.get(0).hash != &#8216;#&#8217; &amp;&amp; link.attr(&#8216;href&#8217;) != &#8216;#&#8217; ))
  157. {
  158. new_li.clone(true).prependTo(new_ul);
  159. }
  160.  
  161. megacolumns.each(function(iteration)
  162. {
  163. var megacolumn = $(this),
  164. mega_current = megacolumn.find( &#8216;&gt; .sub-menu&#8217; ), // can be 0 if only a column is used without submenus
  165. mega_title = megacolumn.find( &#8216;&gt; .mega_menu_title&#8217; ),
  166. mega_title_link = mega_title.find(&#8216;a&#8217;).attr(&#8216;href&#8217;) || &#8220;#&#8221;,
  167. current_megas = mega_current.length &gt; 0 ? mega_current.find(&#8216;&gt;li&#8217;) : null,
  168. mega_title_set = false,
  169. mega_link = new_li.find(&#8216;&gt;a&#8217;),
  170. hide_enty = &#8221;;
  171.  
  172. // ignore columns that have no actual link and no subitems
  173. if( ( current_megas === null ) || ( current_megas.length == 0 ) )
  174. {
  175. if( mega_title_link == &#8216;#&#8217; )
  176. {
  177. hide_enty = &#8216; style=&#8221;display: none;&#8221;&#8216;;
  178. }
  179. }
  180.  
  181. if(iteration == 0) new_li.addClass(&#8216;av-width-submenu&#8217;).find(&#8216;&gt;a&#8217;).append(&#8216;&lt;span class=&#8221;av-submenu-indicator&#8221;&gt;&#8217;);
  182.  
  183. //if we got a title split up submenu items into multiple columns
  184. if(mega_title.length &amp;&amp; mega_title.text() != &#8220;&#8221;)
  185. {
  186. mega_title_set = true;
  187.  
  188. //if we are within the first iteration we got a new submenu, otherwise we start a new one
  189. if(iteration &gt; 0)
  190. {
  191. var check_li = new_li.parents(&#8216;li&#8217;).eq(0);
  192.  
  193. if(check_li.length) new_li = check_li;
  194.  
  195. new_ul = $(&#8216;&lt;ul class=&#8221;sub-menu&#8221;&gt;&#8217;).appendTo(new_li);
  196. }
  197.  
  198. new_li = $(&#8216;&lt;li&#8217; + hide_enty + &#8216;&gt;&#8217;).appendTo(new_ul);
  199. new_ul = $(&#8216;&lt;ul class=&#8221;sub-menu&#8221;&gt;&#8217;).appendTo(new_li);
  200.  
  201. $(&#8216;<a href="'+mega_title_link+'" rel="nofollow">&lt;span class=&#8221;avia-bullet&#8221;&gt;&lt;/span&gt;&lt;span class=&#8221;avia-menu-text&#8221;&gt;&#8217; +mega_title.text()+ &#8216;&lt;/span&gt;</a>&#8216;).insertBefore(new_ul);
  202. mega_link = new_li.find(&#8216;&gt;a&#8217;);
  203.  
  204. // Clone if we have submenus
  205. if(cloneFirst &amp;&amp; ( mega_current.length &gt; 0 ) &amp;&amp; ( mega_link.length &amp;&amp; mega_link.get(0).hash != &#8216;#&#8217; &amp;&amp; mega_link.attr(&#8216;href&#8217;) != &#8216;#&#8217; ))
  206. {
  207. new_li.clone(true).addClass(&#8216;av-cloned-title&#8217;).prependTo(new_ul);
  208. }
  209.  
  210. }
  211.  
  212. // do not append av-submenu-indicator if no submenus (otherwise link action is blocked !!!)
  213. if( mega_title_set &amp;&amp; ( mega_current.length &gt; 0 ) ) new_li.addClass(&#8216;av-width-submenu&#8217;).find(&#8216;&gt;a&#8217;).append(&#8216;&lt;span class=&#8221;av-submenu-indicator&#8221;&gt;&#8217;);
  214. create_list( current_megas , new_ul);
  215. });
  216.  
  217. }
  218.  
  219. });
  220.  
  221. burger_wrap.trigger( &#8216;avia_burger_list_created&#8217; );
  222. return list;
  223. };
  224.  
  225. var burger_ul, burger;
  226.  
  227. //prevent scrolling of outer window when scrolling inside
  228. $(&#8216;body&#8217;).on( &#8216;mousewheel DOMMouseScroll touchmove&#8217;, &#8216;.av-burger-overlay-scroll&#8217;, function (e) {
  229.  
  230. var height = this.offsetHeight,
  231. scrollHeight = this.scrollHeight,
  232. direction = e.originalEvent.wheelDelta;
  233.  
  234. if(scrollHeight != this.clientHeight)
  235. {
  236. if( (this.scrollTop &gt;= (scrollHeight &#8211; height) &amp;&amp; direction &lt; 0) || (this.scrollTop &lt;= 0 &amp;&amp; direction &gt; 0) ) {
  237. e.preventDefault();
  238. }
  239. }
  240. else
  241. {
  242. e.preventDefault();
  243. }
  244. });
  245.  
  246. //prevent scrolling for the rest of the screen
  247. $(document).on( &#8216;mousewheel DOMMouseScroll touchmove&#8217;, &#8216;.av-burger-overlay-bg, .av-burger-overlay-active .av-burger-menu-main&#8217;, function (e)
  248. {
  249. e.preventDefault();
  250. });
  251.  
  252. //prevent scrolling on mobile devices
  253. var touchPos = {};
  254.  
  255. $(document).on(&#8216;touchstart&#8217;, &#8216;.av-burger-overlay-scroll&#8217;, function(e)
  256. {
  257. touchPos.Y = e.originalEvent.touches[0].clientY;
  258. });
  259.  
  260. $(document).on(&#8216;touchend&#8217;, &#8216;.av-burger-overlay-scroll&#8217;, function(e)
  261. {
  262. touchPos = {};
  263. });
  264.  
  265. //prevent rubberband scrolling <a href="http://blog.christoffer.me/six-things-i-learnt-about-ios-safaris-rubber-band-scrolling/" rel="nofollow">http://blog.christoffer.me/six-things-i-learnt-about-ios-safaris-rubber-band-scrolling/</a>
  266. $(document).on( &#8216;touchmove&#8217;, &#8216;.av-burger-overlay-scroll&#8217;, function (e)
  267. {
  268. if(!touchPos.Y)
  269. {
  270. touchPos.Y = e.originalEvent.touches[0].clientY;
  271. }
  272.  
  273. var differenceY = e.originalEvent.touches[0].clientY &#8211; touchPos.Y,
  274. element = this,
  275. top = element.scrollTop,
  276. totalScroll = element.scrollHeight,
  277. currentScroll = top + element.offsetHeight,
  278. direction = differenceY &gt; 0 ? &#8220;up&#8221; : &#8220;down&#8221;;
  279.  
  280. $(&#8216;body&#8217;).get(0).scrollTop = touchPos.body;
  281.  
  282. if ( top &lt;= 0 )
  283. {
  284. if(direction == &#8220;up&#8221;) e.preventDefault();
  285.  
  286. } else if ( currentScroll &gt;= totalScroll )
  287. {
  288. if(direction == &#8220;down&#8221;) e.preventDefault();
  289. }
  290. });
  291.  
  292. $(window).on( &#8216;debouncedresize&#8217;, function (e)
  293. {
  294. // close burger menu when returning to desktop
  295. if(burger &amp;&amp; burger.length)
  296. {
  297. if( ! burger_wrap.is(&#8216;:visible&#8217;) )
  298. {
  299. burger.filter(&#8220;.is-active&#8221;).parents(&#8216;a&#8217;).eq(0).trigger(&#8216;click&#8217;);
  300. }
  301. }
  302.  
  303. set_list_container_height();
  304. });
  305.  
  306. //close overlay on overlay click
  307. $(&#8216;.html_av-overlay-side&#8217;).on( &#8216;click&#8217;, &#8216;.av-burger-overlay-bg&#8217;, function (e)
  308. {
  309. e.preventDefault();
  310. burger.parents(&#8216;a&#8217;).eq(0).trigger(&#8216;click&#8217;);
  311. });
  312.  
  313. //close overlay when smooth scrollign begins
  314. $(window).on(&#8216;avia_smooth_scroll_start&#8217;, function()
  315. {
  316. if(burger &amp;&amp; burger.length)
  317. {
  318. burger.filter(&#8220;.is-active&#8221;).parents(&#8216;a&#8217;).eq(0).trigger(&#8216;click&#8217;);
  319. }
  320. });
  321.  
  322. //toogle hide/show for submenu items
  323. $(&#8216;.html_av-submenu-display-hover&#8217;).on( &#8216;mouseenter&#8217;, &#8216;.av-width-submenu&#8217;, function (e)
  324. {
  325. $(this).children(&#8220;ul.sub-menu&#8221;).slideDown(&#8216;fast&#8217;);
  326. });
  327.  
  328. $(&#8216;.html_av-submenu-display-hover&#8217;).on( &#8216;mouseleave&#8217;, &#8216;.av-width-submenu&#8217;, function (e)
  329. {
  330. $(this).children(&#8220;ul.sub-menu&#8221;).slideUp(&#8216;fast&#8217;);
  331. });
  332.  
  333. $(&#8216;.html_av-submenu-display-hover&#8217;).on( &#8216;click&#8217;, &#8216;.av-width-submenu &gt; a&#8217;, function (e)
  334. {
  335. e.preventDefault();
  336. e.stopImmediatePropagation();
  337. });
  338.  
  339. // for mobile we use same behaviour as submenu-display-click
  340. $(&#8216;.html_av-submenu-display-hover&#8217;).on( &#8216;touchstart&#8217;, &#8216;.av-width-submenu &gt; a&#8217;, function (e)
  341. {
  342. var menu = $(this);
  343. toggle_submenu( menu, e );
  344. });
  345.  
  346. //toogle hide/show for submenu items
  347. $(&#8216;.html_av-submenu-display-click&#8217;).on( &#8216;click&#8217;, &#8216;.av-width-submenu &gt; a&#8217;, function (e)
  348. {
  349. var menu = $(this);
  350. toggle_submenu( menu, e );
  351. });
  352.  
  353. // close mobile menu if click on active menu item
  354. $(&#8216;.html_av-submenu-display-click&#8217;).on( &#8216;click&#8217;, &#8216;.av-burger-overlay a&#8217;, function (e)
  355. {
  356. var loc = window.location.href.match(/(^[^#]*)/)[0];
  357. var cur = $(this).attr(&#8216;href&#8217;).match(/(^[^#]*)/)[0];
  358.  
  359. if( cur == loc )
  360. {
  361. e.preventDefault();
  362. e.stopImmediatePropagation();
  363.  
  364. burger.parents(&#8216;a&#8217;).eq(0).trigger(&#8216;click&#8217;);
  365. return false;
  366. }
  367. return true;
  368. });
  369.  
  370. function toggle_submenu( menu, e )
  371. {
  372. e.preventDefault();
  373. e.stopImmediatePropagation();
  374.  
  375. var parent = menu.parents(&#8216;li&#8217;).eq(0);
  376.  
  377. parent.toggleClass(&#8216;av-show-submenu&#8217;);
  378.  
  379. if(parent.is(&#8216;.av-show-submenu&#8217;))
  380. {
  381. parent.children(&#8220;ul.sub-menu&#8221;).slideDown(&#8216;fast&#8217;);
  382. }
  383. else
  384. {
  385. parent.children(&#8220;ul.sub-menu&#8221;).slideUp(&#8216;fast&#8217;);
  386. }
  387. };
  388.  
  389. (function normalize_layout()
  390. {
  391. //if we got the menu outside of the main menu container we need to add it to the container as well
  392. if(menu_in_logo_container.length) return;
  393.  
  394. var menu2 = $(&#8216;#header .main_menu&#8217;).clone(true),
  395. ul = menu2.find(&#8216;ul.av-main-nav&#8217;),
  396. id = ul.attr(&#8216;id&#8217;);
  397.  
  398. if( &#8216;string&#8217; == typeof id &amp;&amp; &#8221; != id.trim() )
  399. {
  400. ul.attr(&#8216;id&#8217;, id + &#8216;-&#8216; + cloned_menu_cnt++ );
  401. }
  402. menu2.find(&#8216;.menu-item:not(.menu-item-avia-special)&#8217;).remove();
  403. menu2.insertAfter(logo_container.find(&#8216;.logo&#8217;).first());
  404.  
  405. //check if we got social icons and append it to the secondary menu
  406. var social = $(&#8216;#header .social_bookmarks&#8217;).clone(true);
  407. if(!social.length) social = $(&#8216;.av-logo-container .social_bookmarks&#8217;).clone(true);
  408.  
  409. if( social.length )
  410. {
  411. menu2.find(&#8216;.avia-menu&#8217;).addClass(&#8216;av_menu_icon_beside&#8217;);
  412. menu2.append(social);
  413. }
  414.  
  415. //re select the burger menu if we added a new one
  416. burger_wrap = $(&#8216;.av-burger-menu-main a&#8217;);
  417. }());
  418.  
  419. burger_wrap.on(&#8216;click&#8217;, function(e)
  420. {
  421. if(animating) return;
  422. burger = $(this).find(&#8216;.av-hamburger&#8217;),
  423. animating = true;
  424.  
  425. if(!menu_generated)
  426. {
  427. menu_generated = true;
  428. burger.addClass(&#8220;av-inserted-main-menu&#8221;);
  429.  
  430. burger_ul = $(&#8216;
  431. <ul>&#8216;).attr({id:&#8217;av-burger-menu-ul&#8217;, class:&#8221;});
  432. var first_level_items = menu.find(&#8216;&gt; li:not(.menu-item-avia-special)&#8217;); //select all first level items that are not special items
  433. var list = create_list( first_level_items , burger_ul);
  434.  
  435. burger_ul.find(&#8216;.noMobile&#8217;).remove(); //remove any menu items with the class noMobile so user can filter manually if he wants
  436. burger_ul.appendTo(inner_overlay);
  437. first_level = inner_overlay.find(&#8216;#av-burger-menu-ul &gt; li&#8217;);
  438.  
  439. if($.fn.avia_smoothscroll){
  440. $(&#8216;a[href*=&#8221;#&#8221;]&#8217;, overlay).avia_smoothscroll(overlay);
  441. }
  442. }
  443.  
  444. if(burger.is(&#8220;.is-active&#8221;))
  445. {
  446. burger.removeClass(&#8220;is-active&#8221;);
  447. htmlEL.removeClass(&#8220;av-burger-overlay-active-delayed&#8221;);
  448.  
  449. overlay.css(&#8216;opacity&#8217;, function()
  450. {
  451. overlay.css({display:&#8217;none&#8217;});
  452. htmlEL.removeClass(&#8220;av-burger-overlay-active&#8221;);
  453. animating = false;
  454. return 0;
  455. });
  456.  
  457. }
  458. else
  459. {
  460. set_list_container_height();
  461.  
  462. var offsetTop = header_main.length ? header_main.outerHeight() + header_main.position().top : header.outerHeight() + header.position().top;
  463.  
  464. overlay.appendTo($(e.target).parents(&#8216;.avia-menu&#8217;));
  465.  
  466. burger_ul.css({padding:( offsetTop ) + &#8220;px 0px&#8221;});
  467.  
  468. first_level.removeClass(&#8216;av-active-burger-items&#8217;);
  469.  
  470. burger.addClass(&#8220;is-active&#8221;);
  471. htmlEL.addClass(&#8220;av-burger-overlay-active&#8221;);
  472. overlay.css({display:&#8217;block&#8217;});
  473. overlay.css(&#8216;opacity&#8217;, function()
  474. {
  475. animating = false;
  476. return 1;
  477. });
  478.  
  479. setTimeout(function()
  480. {
  481. htmlEL.addClass(&#8220;av-burger-overlay-active-delayed&#8221;);
  482.  
  483. }, 100);
  484.  
  485. first_level.each(function(i)
  486. {
  487. var _self = $(this);
  488. setTimeout(function()
  489. {
  490. _self.addClass(&#8216;av-active-burger-items&#8217;);
  491. }, (i + 1) * 125);
  492. });
  493.  
  494. }
  495.  
  496. e.preventDefault();
  497. });
  498.  
  499. }
  500. })( jQuery );</ul>
  501. </li>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement