$(document).ready(function () { new WOW().init(); $(function () { //浜岀淮鐮 $(".header_top_ewm").mouseover(function () { $('.header_top_ewmimg').show(); }) $(".header_top_ewm").mouseleave(function () { $('.header_top_ewmimg').hide(); }) }); // $('.s-menus span').on('click',function(){ // if($(this).hasClass('on')){ // $(this).removeClass('on'); // $(this).next().slideUp(); // } else { // $(this).addClass('on'); // $(this).next().slideDown(); // } // }) // $(window).resize(function(){ // if($('body').width() < 1025){ // $('.header .menu .m-close').on('click',function(){ // if($(this).hasClass('on')){ // $(this).removeClass('on'); // $(this).next('ul').hide(); // }else{ // $(this).addClass('on'); // $(this).next('ul').show(); // } // }) // $('.header .menu li .menu-link').on('click',function(){ // if($(this).next('.s-menu').is(":hidden")){ // $('.s-menu').slideUp(); // $(this).next('.s-menu').slideDown(); // } // else{ // $('.s-menu').slideUp(); // } // }) // } // }) $(window).load(function(){ if($('body').width() < 1025){ $('.header .menu .m-close').on('click',function(){ if($(this).hasClass('on')){ $(this).removeClass('on'); $(this).next('ul').hide(); }else{ $(this).addClass('on'); $(this).next('ul').show(); } }) $('.header .menu li .menu-link').on('click',function(){ if($(this).next('.s-menu').is(":hidden")){ $('.s-menu').hide(); $(this).next('.s-menu').slideDown(); } else{ $('.s-menu').slideUp(); } }) } }) $(window).scroll(function(){ var scroH = $(window).scrollTop(); if(scroH > 0){ $('.header').addClass('fixed'); } else{ $('.header').removeClass('fixed'); } }) });