var main = { mainpage: function() { // 滑动滚动条 if (screen.width < 1024) { $(document).ready(function() { $(".columnmenu .nav-top").click(function() { $(".columnmenu .nav-list").slidetoggle("slow"); }); }); } // .columnpage $(".columnpage .pages .a_first").text('首页'); $(".columnpage.pages .a_end").text('末页'); $('.news_top .list').slick({ fade:true, speed:500, dots: true, arrows: true, }); $('.timeline .list').slick({ slidestoshow:4, speed:500, dots:false, infinite:false, arrows:true , responsive: [ {breakpoint: 1024,settings: {slidestoshow: 2}}, {breakpoint: 640,settings: {slidestoshow: 1}} ] }); $('.piclist002856 .list').slick({ slidestoshow:3, speed:500, dots:false, arrows:true , }); $('.product_detail .main ul').slick({ slidestoshow: 1, slidestoscroll: 1, arrows: true, fade: true, autoplay: false, speed:1000, autoplayspeed:4000, pauseonhover: false, }); $('.pictit_list').slick({ slidestoshow: 4, slidestoscroll: 1, arrows: true, autoplay: false, speed:1000, autoplayspeed:4000, }); $(".textlist002514 .list").each(function() { $(this).find(".job-title").click(function(e) { $(this).next(".job-main").stop(true,true).slidetoggle()//.slidedown(300); if($(this).hasclass("select")){ $(this).removeclass("select"); }else{ $(this).addclass("select"); } $(this).parent(".list").siblings().find(".job-main").stop(true,true).slideup(); $(this).parent(".list").siblings().find(".job-title").removeclass("select"); }); }); //默认第一个打开 // $(".textlist002514 .list").eq(0).find(".job-title").click(); } }