$(document).scroll(function() { let top = $(document).scrolltop() let bannerhight = $('.banner').height() let bannerhight1 = $('.des_banner').height() if(bannerhight) { if(top >= bannerhight) { $('.header').addclass('on1') } else { $('.header').removeclass('on1') } } if(bannerhight1) { if(top >= bannerhight1) { $('.header').addclass('on1') } else { $('.header').removeclass('on1') } } }) $('.footer .m .top .link ul li:first-child').click(function(){ if($(this).hasclass('on')){ $(this).removeclass('on') $(this).next('div').slideup() }else{ $(this).addclass('on') $(this).next('div').slidedown() } }) $('.mobile_navbar .box ul li > a').click(function(){ if($(this).hasclass('on')){ $(this).removeclass('on') $(this).next().slideup() }else{ $(this).addclass('on') $(this).next().slidedown() $(this).parent().siblings().children('div').slideup() $(this).parent().siblings().children('a').removeclass('on') } }) $('.menu').click(function(){ $('.mobile_navbar').show() $('.mobile_navbar .box').animate({ right:'0' }) }) $('.mobile_navbar').click(function(){ $('.mobile_navbar').fadeout() $('.mobile_navbar .box').animate({ right:'-70%' }) }) $('.mobile_navbar .box').click(function(){ event.stoppropagation() }) $('.mobile_navbar .box img').click(function(){ $('.mobile_navbar').fadeout() $('.mobile_navbar .box').animate({ right:'-70%' }) })