//动画效果添加 $(".news-box").addclass("fadeinup wow"); $(".video-box").addclass("fadeinup wow"); $(".product-box").addclass("fadeinup wow"); $(".culture-box").addclass("fadeinup wow"); $(".talent-box").addclass("fadeinup wow"); //分类选择1 var nw = $(".sp-tab li"); nw.hover(function(){ $(this).addclass("on").siblings().removeclass("on"); var index = nw.index(this); $(".sp-box .sp-item").eq(index).addclass("on").siblings().removeclass("on"); }) //分类选择2 var pb = $(".pb-tab li"); pb.hover(function(){ $(this).addclass("on").siblings().removeclass("on"); var index = pb.index(this); $(".product-box .pb-item").eq(index).addclass("on").siblings().removeclass("on"); }) //banner图片 function height() { var width = $(document.body).width(); var hheight = parseint($(".header-box").height()); var h = parseint($(window).height()) - hheight; $(".pc-banner").css("height", h + 'px'); $(".pc-banner li").css("height", h + 'px'); $(".pc-banner .bg").css("height", h + 'px'); } $(window).on('load', function() { height() }) window.onresize = function() { height(); }