$(document).ready(function () { if ($('.main-header .FH').length){ // FASHION DEPTH ========== var fullMenu = ''; $('ul.base-menu li.ifDrop').each(function(){ fullMenu = fullMenu + ''; }); $('.nav-menu.base-menu').addClass('container-h'); $('ul.base-menu li.all-product-button').remove(); $('ul.base-menu').prepend(fullMenu); $('ul.base-menu li > a > i').removeClass('fa-angle-right'); $('ul.base-menu li > a > i').addClass('fa-angle-down'); $('ul.base-menu ul.drop-list').each(function(){ if(!$(this).parent('div.menu-dd').length){ $('').insertBefore($(this)); } }) $('div.menu-dd').each(function(){ var image = $(this).next('ul.drop-list').find('li.image').html(); var slider = $(this).next('ul.drop-list').find('li.slider-menu').html(); $(this).next('ul.drop-list').find('li.image').remove(); $(this).next('ul.drop-list').find('li.slider-menu').remove(); var subcat = $(this).next('ul.drop-list').html(); if(subcat != undefined){ var w = $(this).next('ul.drop-list').hasClass('w60') ? 'w60' : 'w100'; $(this).next('ul.drop-list').remove(); $(this).append(''); if ( $(image).length ) { $(this).append('
'+image+'
'); } if ( $(slider).length ) { $(this).append('
'+slider+'
'); } } }); // BASE MENU ========== $('ul.base-menu').show(); }; // FASHION MENU ========== function Menu(){ $('.menu-dd').each(function() { var $this = $(this); var Nli = $this.find('li').length; var Nlink = $this.find('a').length; var Ncol = Math.ceil(Nlink / 15); var Mbanner = $this.find('.cat-img').length; Ncol = Ncol == 0 ? 1 : Ncol; col = Nli > Ncol ? Ncol : Nli; col = (col + (Mbanner ? 1 : 0) > 4) ? 4 : col; $this.addClass('column' + col); if (Mbanner){$this.addClass('banner');}; if ($this.find('li span > a').length == 0){ $this.addClass('no-sub'); }; if ($this.hasClass('column4')){ $this.parent().addClass('initial-h'); }; }); }; Menu(); $('.main-header .menu-drop').hover(function() { $('.main-header .menu-drop .menu-dd').removeClass('open'); $(this).children('.menu-dd').stop().addClass('open'); if ( $('.slide-item-menu').length ) { $('.slide-item-menu').owlCarousel({items:1,navigation:!0,pagination:!1}); // get owl element var owl = $('.slide-item-menu'); // get owl instance from element var owlInstance = owl.data('owlCarousel'); // if instance is existing if(owlInstance != null) owlInstance.reinit(); }; },function() { $('.main-header .menu-drop .menu-dd').removeClass('open'); }); // BF SIDEBAR + MENU STICKY $.Gomag.bind('Widget/Add/After', function(){ if($('.-g-template-black-friday').length){ $('.main-header').css({'top' : '-' + ($('.discount-tape').height() + $('.top-head-bg').height()) + 'px'}); } if($( window ).width() > 991 && $('.-g-template-black-friday').length){ $('.landing-h .side-menu.fixed').css({'top' : $('#navigation').outerHeight() + 20 + 'px'}); } }); $('#nav-filter:not(.mm-nav-filter) .option-group').addClass('ignoreMore'); //toggle filter $(document).on('click', '#nav-filter:not(.mm-nav-filter) .filter.box .title-h', function(e){ e.preventDefault(); $(this).addClass('ignore'); $('#nav-filter:not(.mm-nav-filter) .filter.box .title-h').each(function(){ if(!$(this).hasClass('ignore')){ $(this).removeClass('ttl-bg') } }) $(this).removeClass('ignore'); $(this).toggleClass('ttl-bg'); $(this).next().addClass('ignoreSlide'); $('#nav-filter:not(.mm-nav-filter) .option-group').each(function(){ if(!$(this).hasClass('ignoreSlide')){ $(this).hide(); } }) $(this).next().removeClass('ignoreSlide'); $(this).next().toggle(); }); $(document).mouseup(function(e) { var container = $('#nav-filter:not(.mm-nav-filter) .filter.box:not(.-g-category-filters-remove-all)'); if (!container.is(e.target) && container.has(e.target).length === 0){ $(this).find('.option-group').removeClass('ignore').hide(); $(this).find('.title-h').removeClass('ttl-bg'); } }); //change filter holder $('#nav-filter:not(.mm-nav-filter) .filter.box:not(.-g-category-filters-remove-all)').each(function(){ var filterh = $(this).html(); $(this).find('.title-h,.option-group,.more-filter').remove(); $(this).prepend('
'+filterh+'
'); }); if ($(window).width() > 768) { $('.result-section .order-type').insertAfter('.filter.box:last-child'); $('.order-type').addClass('filter box'); $('.list-grid').insertAfter('.order-type'); }; //footer holder if ($('.bottom-section').length){ $('.bottom-section').before(''); $('.bottom-section').insertAfter('.append-footer'); $('footer').insertAfter('.bottom-section'); }else{ $('footer').before(''); $('footer').insertAfter('.append-footer'); } $('.hellobar-itc').insertBefore('.top-head-bg'); var hellobar_2 = $('.hellobar-fashion').detach(); $('.main-header').append(hellobar_2); }); /** * Scrie aici codul tau Javascript... */ // Iese din pop-up la click in experiorul lui /*document.addEventListener('click', function(event) { var isClickInsidePopup = document.querySelector('.widget17').contains(event.target); if (!isClickInsidePopup) { // Apelează aceeași funcție ca și butonul de închidere $.Gomag.setCookie('widget17', '1', 86400000, true); // Ascunde pop-up-ul și eventuala suprapunere document.querySelector('.widget17').style.display = 'none'; // Verifică dacă există o suprapunere și ascunde-o // Înlocuiește '.overlay-class' cu clasa corectă pentru suprapunerea ta var overlay = document.querySelector('.overlay-class'); if (overlay) { overlay.style.display = 'none'; } } }); */ // Seteaza opacitate de 0.3 la bannerele din advent care au date trecute /*document.addEventListener("DOMContentLoaded", function() { // Setează data de start (14 Decembrie 2023) const startDate = new Date('2023-12-01T00:00:00+02:00'); // Ora 23:59, fus orar București const currentDate = new Date(); // Calculează diferența în zile const dayDifference = Math.floor((currentDate - startDate) / (1000 * 60 * 60 * 24)); // Calculează ID-ul bannerului curent const currentBannerId = 133 + dayDifference; // Aplică opacitatea tuturor bannerelor de la 133 până la bannerul curent for (let i = 133; i <= currentBannerId; i++) { if (i === 157) continue; // Sari peste banner_157 const banner = document.getElementById('banner_' + i); if (banner) { banner.style.opacity = '0.3'; } } }); */