$(document).ready(function () { //通用切换 $('.tabSwitch').each(function (index, element) { var obj = $(this); obj.find('.tabTit').children().on('click tab', function () { $(this).addClass('cur').siblings().removeClass('cur'); if (obj.find('.tabBox').children().eq($(this).index()).length > 0) obj.find('.tabBox').children().hide().eq($(this).index()).show(); if (obj.find('.tabBox2').children().eq($(this).index()).length > 0) obj.find('.tabBox2').children().hide().eq($(this).index()).show(); return false; }); obj.find('.tabTit .cur').trigger('tab'); }); $('.tabSwitchHover').each(function (index, element) { var obj = $(this); obj.find('.tabTit').children().on('mouseover tab', function () { $(this).addClass('cur').siblings().removeClass('cur'); if (obj.find('.tabBox').children().eq($(this).index()).length > 0) obj.find('.tabBox').children().hide().eq($(this).index()).show(); if (obj.find('.tabBox2').children().eq($(this).index()).length > 0) obj.find('.tabBox2').children().hide().eq($(this).index()).show(); //return false; }); obj.find('.tabTit .cur').trigger('tab'); }); }); $(document).ready(function () { fh = $('.topHeader').height(); $(window).scroll(function(e){ s = $(document).scrollTop(); if(s > $(window).height()){ $(".backTop").fadeIn(); }else{ $(".backTop").fadeOut(); } if(s > fh){ $('.topHeader').addClass('fixed-head'); }else{ $('.topHeader').removeClass('fixed-head'); } }); }); $(".m-nav").click(function() { $(".nav_box_6").addClass("cur"); }); $(".navclose").click(function() { $(".nav_box_6").removeClass("cur"); }); $(".nav_box .navlist ul>li").click(function() { $(this).toggleClass("cur").find('.navlist2').slideToggle(); }); // function banner(wid){ // if(wid>1100){ // $(".banner .swiper-slide .pcbg").height($(window).height()); // $(".banner .swiper-slide").height($(window).height()); // $(".ibanner .ibannerbg").height($(window).height()); // $(".ibanner .ibannerbga").height($(window).height()*0.7); // $(".banner .swiper-slide .pcbg").width($(window).width()); // }else{ // $(".banner .swiper-slide .pcbg").height($(window).height()*0.7); // $(".banner .swiper-slide").height($(window).height()*0.7); // $(".ibanner .ibannerbg").height($(window).height()*0.7); // } // } // $(document).ready(function(){ // wid = $(window).width(); // banner(wid); // }); // $(window).resize(function(){ // wid = $(window).width(); // banner(wid); // });