(function(doc, win) { var docEl = doc.documentElement, resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize', recalc = function() { var clientWidth = docEl.clientWidth; if (!clientWidth) return; if (clientWidth <= 1024) { docEl.style.fontSize = '100px'; } else { docEl.style.fontSize = 100 * (clientWidth / 1920) + 'px'; } }; if (!doc.addEventListener) return; win.addEventListener(resizeEvt, recalc, false); doc.addEventListener('DOMContentLoaded', recalc, false); })(document, window); $(function() { var w = $(window).width(); if (w > 1200) { if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))) { new WOW({ callback: function(box) { $(box).addClass("wow1"); } }).init(); } $(window).resize(function() { new WOW({ callback: function(box) { $(box).addClass("wow1"); } }).init(); }); } }) var ww = $(window).width() // 侧边栏 $(window).scroll(function(){ var per = $(window).scrollTop() / $(window).width() if(per > 0.51){ $('.aside').addClass('act') }else{ $('.aside').removeClass('act') } }) $('.aside').click(function(){ $('html,body').animate({scrollTop: '0px'}, 500); }) // 底部链接 $(function(){ $("footer .links .tip").click(function() { $('footer .links .xl').stop(true, false).slideToggle(); }); }) $(function(){ $(".m_footer .links .tip").click(function() { $('.m_footer .links .xl').stop(true, false).slideToggle(); }); }) // 头部导航 $(document).ready(function() { $("header .nav ul li").hover(function() { $(this).children(".xl").stop(true, false).slideDown(); }, function() { $(this).children(".xl").stop(true, false).slideUp("fast"); }); }); $(window).scroll(function() { if ($(window).scrollTop() >= 100) { $("header").stop(true, false).addClass('active'); } else { $("header").stop(true, false).removeClass('active'); } }); // 移动端头部导航 $(window).scroll(function() { if ($(window).scrollTop() > 0) { $(".m_header").stop(true, false).addClass('act'); } else { $(".m_header").stop(true, false).removeClass('act'); } }); $('.m_header .col-r .list').click(function(){ $(".m_header ").stop(true, false).addClass('act'); $('.m_header .m_menu').addClass('on') $('.m_header .top').addClass('on') }) $('.m_header .col-r .list2').click(function(){ $(".m_header ").stop(true, false).addClass('act'); $('.m_header .m_menu').addClass('on') $('.m_header .top').addClass('on') }) $('.m_header .col-r .cha').click(function(){ if ($(window).scrollTop() > 0) { $(".m_header").stop(true, false).addClass('act'); } else { $(".m_header").stop(true, false).removeClass('act'); } $('.m_header .m_menu').removeClass('on') $('.m_header .top').removeClass('on') if ($(window).scrollTop() > 0) { $(".m_header ").stop(true, false).addClass('act'); $(".m_header .top").stop(true, false).addClass('act'); } else if ($(window).scrollTop() <= 0) { $(".m_header .top").stop(true, false).removeClass('act'); } }) $(".m_header .m_menu .first").on('click', function() { if ($(this).siblings('.sec_list').is(':hidden')) { $(this).addClass('on'); $(this).siblings('.sec_list').stop().slideDown(); $(this).parent().siblings('li').children('.sec_list').stop().slideUp().siblings('.tit').removeClass( 'on'); } else { $(this).removeClass('on'); $(this).siblings('.sec_list').stop().slideUp(); } }); $(".m_header .m_menu .sec_item").on('click', function() { if ($(this).find('.third_list').is(':hidden')) { $(this).addClass('on'); $(this).siblings().removeClass('on'); $(this).find('.third_list').stop().slideDown(); $(this).siblings().children('.third_list').stop().slideUp() } else { $(this).removeClass('on'); $(this).siblings().removeClass('on'); $(this).find('.third_list').stop().slideUp(); } }); $("footer .first i").on('click', function() { if ($(this).parent().siblings('.sec_list').is(':hidden')) { console.log('on') $(this).addClass('on'); $('footer .sec_list').stop().slideUp('fast') $(this).parent().siblings('.sec_list').stop().slideDown(); } else { console.log('ion') $(this).parent().removeClass('on'); $(this).parent().siblings('.sec_list').stop().slideUp(); } });