$(function(){ //发展历程 $(".history li:even").each(function () { var pic=$(this).find("figure"); var txt=$(this).find(".txt"); $(window).on("resize", function(e) { var w = $(window).width() if (w <= 640) { txt.insertAfter(pic); } else { pic.insertAfter(txt); } }).trigger("resize"); }) $(".history li").each(function() { //显示数量 var num312=$(this).index() if(num312>=8){ $(this).hide(); } }) //点击显示更多 $(".history .HMore").click(function() { if($(this).find("span").text()=='加载更多'){ $(".history li").show(); $(this).find("span").text("收起") }else{ // $(".history li").each(function() { var num312=$(this).index() if(num312>=8){ $(this).hide(); } }); $(this).find("span").text("加载更多") } }); //技术能力 $(".technical_skills .list:odd").each(function () { var pic=$(this).find(".img"); var txt=$(this).find(".txt"); $(window).on("resize", function(e) { var w = $(window).width() if (w <= 640) { txt.insertAfter(pic); } else { pic.insertAfter(txt); } }).trigger("resize"); }) $('.technical_skills .ul').slick({ arrows: false, dots: true, infinite: false, speed: 300, slidesToShow: 1, slidesToScroll: 1, }); //新爱体育(中国)官方 $('.news_top_list .ul').slick({ arrows: true, dots: false, infinite: false, speed: 300, slidesToShow: 1, slidesToScroll: 1, }); //产品详情外观展示 $('.pro_box_item2 .ul').slick({ arrows: true, dots: false, infinite: false, speed: 300, slidesToShow: 1, slidesToScroll: 1, }); //产品详情应用领域 $('.pro_box_item4 .ul').slick({ arrows: true, dots: false, infinite: false, speed: 300, slidesToShow: 1, slidesToScroll: 1, }); // 发展历程 $(".process-slick").slick({ dots:false, infinite: false, speed: 300, arrows: true, slidesToShow: 1, responsive: [ { breakpoint: 1024, settings: { arrows: false, } }, ] }) //产业格局 // $(".Industry_list ul").slick({ // dots: false, // infinite: false, // speed: 300, // arrows: true, // slidesToShow: 4, // responsive: [ // { // breakpoint: 1366, // settings: { // slidesToShow: 3 // } // }, // { // breakpoint: 1024, // settings: { // slidesToShow: 2 // } // }, // { // breakpoint: 640, // settings: { // slidesToShow: 1 // } // } // ] // }); $(".Industry_list li").click(function () { var index=$(this).index(); $(this).addClass("aon").siblings().removeClass("aon"); $(".Industry_icon_list .item").find(".icon").removeClass("aon"); $(".Industry_icon_list .item").eq(index).find(".icon").addClass("aon"); }); $(".Industry_list li").eq(0).click(); //工厂展示 $('.Industry_item2 .slider-for ul').slick({ slidesToShow: 1, slidesToScroll: 1, arrows: true, fade: true, asNavFor: '.Industry_item2 .slider-nav ul' }); $('.Industry_item2 .slider-nav ul').slick({ slidesToShow: 8, slidesToScroll: 1, asNavFor: '.Industry_item2 .slider-for ul', dots: false, arrows: false, focusOnSelect: true, responsive: [ { breakpoint: 1200, settings: { slidesToShow: 6 } }, { breakpoint: 1024, settings: { slidesToShow: 4 } }, { breakpoint: 640, settings: { slidesToShow: 3 } } ] }); //社会招聘 // $(".job_list .list").eq(0).find(".con").slideDown(); // $(".job_list .list").eq(0).addClass("Aon"); //点击显示 $(".job_list .list").each(function() { $(this).find(".ullist").click(function(){ $(this).parent().toggleClass("Aon"); $(this).next(".con").stop(true,true).slideToggle(); $(this).parent(".list").siblings().find(".con").slideUp(); $(this).parent(".list").siblings().removeClass("Aon"); }); }); //校园招聘公告 $('.job_campus_top .ul').slick({ arrows: false, dots: false, infinite: false, autoplay: true, autoplaySpeed: 2000, slidesToShow: 1, slidesToScroll: 1, vertical: true, }); //经销商查询 $(".dealer_list .list_item dl").click(function (){ $(this).toggleClass("aon"); $(this).find("dd").stop(true,true).slideToggle(); $(this).siblings().removeClass("aon"); $(this).siblings().find("dd").slideUp(); }) //发展轨迹 // $('.development_list .ul').slick({ // centerMode: true, // centerPadding: '0', // //infinite: false, // initialSlide:1, // slidesToShow: 3, // responsive: [ // // { // breakpoint: 480, // settings: { // centerMode: true, // centerPadding: '0', // slidesToShow: 1 // } // } // ] // }); });