Nascondere menu onclick su ancora

  • Creatore Discussione Creatore Discussione nrik
  • Data di inizio Data di inizio
dovrei attivare questo al click sulle ancore molto proba

Codice:
    function closeMenu(){
        menuCloseBtn.stop().animate({top:'-75px'}, 1500, 'easeOutQuart');
        menuBtn.stop().delay(350).animate({opacity:'1'}, 1000, 'easeOutQuart');
        menuOverlay.stop().animate({width:'0px'}, 1000, 'easeOutQuart', function(){
            menuHolder.addClass('menu-hidden');
        });
        
        menuItems.each(function(){
            _this = jQuery(this);
            _this.stop().animate({left:'290px'}, 1000, 'easeOutQuart');
        })
    }
 
Probabilmente il codice da eseguire onclick è questo

Codice:
function closeMenu(){
        menuCloseBtn.stop().animate({top:'-75px'}, 1500, 'easeOutQuart');
        menuBtn.stop().delay(350).animate({opacity:'1'}, 1000, 'easeOutQuart');
        menuOverlay.stop().animate({width:'0px'}, 1000, 'easeOutQuart', function(){
            menuHolder.addClass('menu-hidden');
        });
        
        menuItems.each(function(){
            _this = jQuery(this);
            _this.stop().animate({left:'290px'}, 1000, 'easeOutQuart');
        })
    }
 

Discussioni simili