目前須要知道的事 $('#fullpage').fullpage({ verticalCentered: true,//定義每一頁的內容是否垂直居中,默認true resize : false,//字體是否隨窗口縮放而縮放,默認false css3: true,//是否使用CSS3 transforms來實現滾動效果,默認爲true paddingBottom:'-200px', responsiveHeight: 0, 'onLeave':function(index, nextIndex, direction){css
} $.fn.fullpage.setAutoScrolling(false); // 判斷上下滑動問題是否實現同同樣效果 而後返回return false 添加 $.fn.fullpage.setFitToSection(false); // 該函數 就能夠解決此問題。 2 添加數據信息 afterLoad : function(index, nextIndex, direction){ let _index = index.index; // _index 是數據添加的內容索引值。 console.log('afterLoad'+_index); if(_index==19 && direction=='up'){ $.fn.fullpage.setAutoScrolling(true); $.fn.fullpage.setFitToSection(true); // 該函數 }