$(document).ready(function() { // 返回头部 $(function() { $(".return").click(function() { $("html,body").animate({ scrolltop: 0 }, 500); }); }); //语言版本 // $("#language dt").click(function(){ // $(this).next("dd").slidetoggle(); // }); //导航下拉 $(function() { $(".nav li").hover(function() { $(this).children(".navbox").stop(true, true).slidedown(500); }, function() { $(this).children(".navbox").stop(true, true).slideup(0); }) }); //通用切换 $('.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'); }); }); $(".menu").click(function() { $(".nav_box_6").toggleclass("cur"); }); $(".navclose").click(function() { $(".nav_box_6").removeclass("cur"); }); $(".nav_box .navlist ul>li").click(function() { $(this).toggleclass("cur").find('.navlist2').slidetoggle(); }); $(function(){ $('.backtop').click(function(){ $('html , body').animate({scrolltop: 0},'slow'); }); }); function banner(){ var wid = $(window).width(); var hei = $(window).height(); $(".ibanner .bg").css("height", hei); $(".ibanner .bg").css("width", wid); $(".banner .swiper-container-banner .swiper-wrapper .bg").css("height", hei); $(".banner .swiper-container-banner .swiper-wrapper .bg").css("width", wid); } banner(); $(window).resize(function(){ banner(); });