// 关于我们侧边导航 $(function() { var Accordion = function(el, multiple) { this.el = el || {}; this.multiple = multiple || false; // Variables privadas var links = this.el.find('.link'); // Evento links.on('click', {el: this.el, multiple: this.multiple}, this.dropdown) } Accordion.prototype.dropdown = function(e) { var $el = e.data.el; $this = $(this), $next = $this.next(); $next.slideToggle(); $this.parent().toggleClass('open'); if (!e.data.multiple) { $el.find('.left_sub').not($next).slideUp().parent().removeClass('open'); }; } var accordion = new Accordion($('#nav_left'), false); }); //二级导航 底部a标签 下划线动画 $(function(){ $('.nav_left .link,.nav_left .left_sub a').hover(function(){ $('em',this).stop().css('height','1px'); $('em',this).animate({ left:'0', width:'100%', right:'0' },600); },function(){ $('em',this).stop().animate({ left:'0', width:'0' },600); }); });