/*自动适用手机*/ $(function () { $(window).resize(function(){ autoscrolling(); }); function autoscrolling(){ var $ww = $(window).width(); if($ww < 1024){ $.fn.fullpage.setautoscrolling(false); $.fn.fullpage.setlockanchors(true); $.fn.fullpage.setfittosection(false); } else { $.fn.fullpage.setautoscrolling(true); $.fn.fullpage.setlockanchors(false); } } autoscrolling(); });