$(function(){ $('.nav-btn').on('click',function(){ if($(this).hasClass('cur')){ $(this).removeClass('cur'); $('.m-nav').stop().slideUp(); }else{ $(this).addClass('cur'); $('.m-nav').stop().slideDown(); } }) $(".pc-nav li").hover(function(){ if($(this).hasClass('xian')){ $(this).removeClass('xian').siblings().removeClass('xian'); $(this).find(".header-fixeds").stop().hide().siblings().find('.header-fixeds').stop().hide(); // $(this).siblings().find('.header-fixeds').stop().hide(); }else{ $(this).addClass('xian').siblings().removeClass('xian'); $(this).find(".header-fixeds").stop().slideDown(600).siblings().find('.header-fixeds').stop().hide(); // $(this).siblings().find('.header-fixeds').stop().hide(); } }) $(".pho-footer ul li").on('click',function(){ if($(this).hasClass('cur')){ $(this).removeClass('cur'); $(this).find("dd").stop().slideUp(); $(this).siblings().find('dd').stop().slideUp(); }else{ $(this).addClass('cur').siblings().removeClass('cur'); $(this).find("dd").stop().slideDown(); $(this).siblings().find('dd').stop().slideUp(); } }) $(".m-nav li").on('click',function(){ if($(this).hasClass('cur')){ $(this).removeClass('cur'); $(this).find("dd").stop().slideUp(); $(this).siblings().find('dd').stop().slideUp(); $(this).siblings().find('.pho-san').stop().slideUp(); $(this).siblings().find('dd.pho-dd span').removeClass('cur') }else{ $(this).addClass('cur').siblings().removeClass('cur'); $(this).find("dd").stop().slideDown(); $(this).siblings().find('dd').stop().slideUp(); $(this).siblings().find('.pho-san').stop().slideUp(); $(this).siblings().find('dd.pho-dd span').removeClass('cur') } }) $(".m-nav li dd.pho-dd a.tit").click(function(){ var href=$(this).attr("data-href"); location.href = href; }) $(".m-nav li dd.pho-dd span").click(function(event){ event.stopPropagation(); if($(this).hasClass('cur')){ $(this).removeClass('cur'); $(this).parent().next().stop().slideUp(); $(this).parent().siblings(".pho-san").stop().slideUp(); }else{ $(this).addClass('cur'); $(this).parent().siblings(".pho-san").stop().slideUp(); $(this).parent().next().stop().slideDown(); } }) $('.search-btn').on('click',function(){ $(this).addClass('on'); $('.search-dialog-box').stop().fadeIn(); // $('.search-dialog-box input[type=text]').focus(); }) $('.search-dialog-box .black').on('click',function(){ $(this).removeClass('on'); $('.search-dialog-box').stop().fadeOut(); }) if(window.innerWidth>1024){ new WOW().init(); } // $(".right-fixed ul.uouo li.li1").hover(function(){ // $(this).addClass("active") // }) $(".right-fixed ul.uouo li.li4").click(function(){ $("html,body").animate({scrollTop:0},1000); }) }); function navScroll(){ var preImg = []; $('img').each(function(index,el){ preImg.push($(el).attr('src')); }) _PreLoadImg(preImg,function(){ var winS = $(window).scrollTop(); var navTop = $('.pc-nac-detial').offset().top; if(winS>navTop){ $('.pc-nac-detial').addClass('on'); $('.clearfixed').addClass('on'); }else{ $('.pc-nac-detial').removeClass('on'); $('.clearfixed').removeClass('on'); } $(window).on('scroll resize',function(){ winS = $(window).scrollTop(); if(winS>navTop){ $('.pc-nac-detial').addClass('on'); $('.clearfixed').addClass('on'); }else{ $('.pc-nac-detial').removeClass('on'); $('.clearfixed').removeClass('on'); } var _length = $('.position').length; for(var i = 0;i < _length ; i++){ if($(window).scrollTop()>=$('.position').eq(i).offset().top-$('.clearfixed').height()){ $('.nav-detai-pc .detial-nav-pc .swiper-slide a').removeClass('cur'); $('.nav-detai-pc .detial-nav-pc .swiper-slide a').eq(i).addClass('cur') } } }); $('.nav-detai-pc .detial-nav-pc .swiper-slide').on('click',function(){ var i = $(this).index(); $('html,body').stop().animate({scrollTop:$('.position').eq(i).offset().top-$('.mobitem').height()-$('.pc-nac-detial').outerHeight()+2},500) }) $('.nav-detai .detial-nav .swiper-slide').on('click',function(){ var i = $(this).index(); $('html,body').stop().animate({scrollTop:$('.position').eq(i).offset().top-$('.mobitem').height()-$('.pc-nac-detial').outerHeight()+2},500) }) }) }