$(function(){ $(function(){ $('#fullpage').fullpage({ navigation:true, anchors: ['section1', 'section2', 'section3', 'section4','section5','section6','section7'], afterload: function(anchorlink, index){ if(index == '1'){ $(".header").show(); } if(index == 2){ $('.counter').countup(); } if(index == 4){ $('.counter').countup(); } if(index == 6){ } }, onleave: function(index, direction){ if(index == '1'){ $(".header").hide(); } } }); setinterval(function(){ $.fn.fullpage.moveslideright(); }, 5000); $(window).bind('resize', function (){ autoscrolling(); }); function autoscrolling(){ var $ww = $(window).width(); if($ww < 1025){ $.fn.fullpage.setautoscrolling(false); } else { $.fn.fullpage.setautoscrolling(true); } } autoscrolling(); $("#fp-nav li").each(function () { var e=$(this).index()+1; $(this).find("span").text('0'+e); }) }); //首页banner $(".hbanner ul").slick({ slidestoshow: 1, slidestoscroll: 1, dots:true, arrows:false, infinite: false, fade: true, autoplay: true, }); $(".hbox2 li .txt").hover(function () { $(this).parents("li").toggleclass("aon"); $(this).parents("li").siblings("li").removeclass("aon"); }); $(".hbox5 .top ul").slick({ slidestoshow: 1, slidestoscroll: 1, dots:true, arrows:false, infinite: false, // autoplay: true, }); });