$(document).ready(function($) { // mobile导航 $('.menuBtn').click(function(e) { if ($(this).hasClass('on')) { $('.overlay').remove(); $(this).removeClass('on'); $('#aside').removeClass('open'); e.stopPropagation(); } else { $('body').append('
'); $(this).addClass('on'); $('#aside').addClass('open'); e.stopPropagation(); } }); $('#aside').click(function(e) { e.stopPropagation(); }); $(document).on('click', function() { $('#aside').removeClass('open'); $('.menuBtn').removeClass('on'); $('.overlay').remove(); }); // 手机端 二级展开 $('#aside .menu .par').click(function(event) { if ($(this).next('.sub').length) { $(this).toggleClass('on').parent('li').siblings('li').find('.par').removeClass('on'); $(this).siblings('.sub').stop().slideToggle(); $(this).parent('li').siblings('li').find('.sub').stop().slideUp(); }; }); // 搜索栏 $('.header .search .icon').click(function(event) { $(this).next('.form').stop().fadeIn(); $('.navig').stop().fadeOut(); }); $('.header .search').click(function(event) { event.stopPropagation(); }); $('body').click(function(event) { $('.header .search .form').stop().fadeOut(); $('.navig').stop().fadeIn(); $('#aside').removeClass('open'); $('.menuBtn').removeClass('on'); $('.overlay').remove(); }); // 返回顶部 $('.toTop').click(function() { $('body,html').animate({ 'scrollTop': 0 }, 500); }); // $(window).scroll(function(){ // var _top = $(window).scrollTop(); // if( _top<100 ){ // $('.goTop').removeClass('cur'); // }else{ // $('.goTop').addClass('cur'); // } // }); // 选项卡 鼠标点击 // 初始化wow.js var wow = new WOW({ boxClass: 'wow', animateClass: 'animated', offset: 0, mobile: true, live: true }); if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))) { wow.init(); }; });