react-fullpage中的fullpage_api.getActiveSection()

时间:2018-10-11 05:40:59

标签: javascript reactjs frontend fullpage.js

有人使用了这个库,你能告诉我怎么做吗 获得活动部分,我已经在它的文档中进行了搜索,但是它很少,并且没有提及该方法

我已经创建了问题,但是我想知道这里是否有人可以帮助我

谢谢:D

更新:我可以解决它  在onScroll方法中的p事件中,可以使用p.activeSection

获得activeSection

class Two extends React {
 constructor() {
  super();
this.state = {
  initialActiveSection: null
};
}
onScroll(p) {
  if (this.state.initialActiveSection === null)
   this.setState(() => ({ initialActiveSection: p.activeSection 
   }));
}
render() {
 const { initialActiveSection } = this.state;
return (
  <SectionsContainer
    {...options}
    activeSection={initialActiveSection}
    scrollCallback={this.onScroll}
  />
  );
 }
}

0 个答案:

没有答案