// 澶撮?ㄦ诞? $(function () { //瓒?杩?涓?瀹?楂?搴﹀???坊??绫伙拷� var nav = $("header"); //寰??板????璞 var win = $(window); //寰??扮??e?璞 var sc = $(document); //寰???ocument??妗e?璞★拷� win.scroll(function () { if (sc.scrollTop() >= 100) { nav.addClass("scope"); } else { nav.removeClass("scope"); } }); }) //涓??????? $(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('.submenu').not($next).slideUp().parent().removeClass('open'); }; } var accordion = new Accordion($('#accordion'), false); });