$(function(){ $('#about .count').countup({ useeasing: true, usegrouping: true, }); /**/ var timeline = $('#timeline .slick-load'); var timetext = $('#timetext .slick-load'); if(timetext.length > 0){ timetext.slick({ autoplay:false, autoplayspeed:3000, speed:800, dots: false, arrows: false, vertical: false, fade:true, slidestoshow: 1, slidestoscroll: 1, pauseonhover:false, pauseonfocus:false, }); } if(timeline.length > 0){ timeline.slick({ autoplay:false, autoplayspeed:3000, speed:800, dots: false, arrows: true, vertical: false, fade:false, slidestoshow: 6, slidestoscroll: 1, pauseonhover:false, centermode:true, centerpadding:'0', focusonselect:true, asnavfor:timetext, responsive: [ { breakpoint: 1025, settings: { slidestoshow: 5, } }, { breakpoint: 769, settings: { slidestoshow: 2, } } ] }); } /**/ var cooperation = $('#cooperation .slick-load'); cooperation.find('li').unwrap('ul').each(function(e){ cooperation.find('li').slice(e*18,e*18+18).wrapall('
'); }); if(cooperation.length > 0){ cooperation.slick({ autoplay:false, autoplayspeed:3000, speed:800, dots: true, arrows: true, vertical: false, fade:false, slidestoshow: 1, slidestoscroll: 1, pauseonhover:false, pauseonfocus:false, }); } })