React(16)でWaypoint(7.3.2)を使用して、スクロール可能な項目のリストを作成しています。各項目はdivの上部に到達すると非表示になります。私の基本的な質問は、イベントまたはコールバックにウェイポイントを出入りする要素への参照を取得する方法です。Waypointを使用してアクティブな要素を取得するにはどうすればよいですか?
私はコールバックに入れたい要素にref={}
を含めることで、要素への参照を取得し、不透明度を変更できると思っていました。 Waypointが接続されているコードは次のとおりです。
class Division extends Component {
constructor(props) {
super(props);
}
_handleWayPointEnter = (event) => {
console.log("Waypoint enter " + JSON.stringify(event, 4));
}
_handleWayPointLeave = (event) => {
console.log("Waypoint leave " + JSON.stringify(event, 4));
}
render() {
let inlineStyle= {opacity : this.state.opacity};
return (
<Waypoint debug={false} onEnter={this._handleWayPointEnter} onLeave={this._handleWayPointLeave} >
<div style={inlineStyle} ref={this.props.innerRef} className="sch-division">
{this.props.name}<br/>
<SomeOtherComponent />
</div>
</Waypoint>
);
}
}
export default Division;
すべての回答が高く評価されています。
- 反応 - ウェイポイントをドキュメントから
Dyo、これは間違いなくコールバックのリファレンスを提供します。ありがとうございました。表示されているすべての要素がウェイポイントに入っているため、実際には私の全体的な問題は解決しません。だから私は私のウェイポイントがどこにあるのか再考する必要があると思う。 - 返信いただきありがとうございます! – Griff