Server IP : 15.235.198.142 / Your IP : 216.73.216.236 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/yme/wp-content/plugins/ocean-extra/assets/js/ |
Upload File : |
var $j = jQuery.noConflict(); $j( document ).ready( function() { "use strict"; // Full Screen header menu oceanwpFullScreenMenu(); } ); /* ============================================== FULL SCREEN MENU ============================================== */ function oceanwpFullScreenMenu() { "use strict" var $menuWrap = $j( '#site-header.full_screen-header #full-screen-menu' ), $menuBar = $j( '#site-header.full_screen-header .menu-bar' ), $customLogo = $j( '#site-logo.has-full-screen-logo' ); if ( $menuBar.length ) { $menuBar.on( 'click', function( e ) { e.preventDefault(); if ( ! $j( this ).hasClass( 'exit' ) ) { $j( this ).addClass( 'exit' ); $customLogo.addClass( 'opened' ); $menuWrap.addClass( 'active' ); $menuWrap.fadeIn( 200 ); setTimeout( function() { $j( 'html' ).css( 'overflow', 'hidden' ); }, 400); } else { $j( this ).removeClass( 'exit' ); $customLogo.removeClass( 'opened' ); $menuWrap.removeClass( 'active' ); $menuWrap.fadeOut( 200 ); setTimeout( function() { $j( 'html' ).css( 'overflow', 'visible' ); $j( '#full-screen-menu #site-navigation ul > li.dropdown' ).removeClass( 'open-sub' ); $j( '#full-screen-menu #site-navigation ul.sub-menu' ).slideUp( 200 ); }, 400); } } ); // Logic for open sub menus $j( '#full-screen-menu #site-navigation ul > li.dropdown > a' ).on( 'tap click', function ( e ) { e.preventDefault(); if ( $j( this ).closest( 'li.dropdown' ).find( '> ul.sub-menu' ).is( ':visible' ) ) { $j( this ).closest( 'li.dropdown' ).removeClass( 'open-sub' ); $j( this ).closest( 'li.dropdown' ).find( '> ul.sub-menu' ).slideUp( 200 ); } else { $j( this ).closest( 'li.dropdown' ).addClass( 'open-sub' ); $j( this ).closest( 'li.dropdown' ).find( '> ul.sub-menu' ).slideDown( 200 ); } return false; } ); } }