diff --git a/public/animation/fade/ElementScrollFader.jsx b/public/animation/fade/ElementScrollFader.jsx index 6e9615c..de60d3a 100644 --- a/public/animation/fade/ElementScrollFader.jsx +++ b/public/animation/fade/ElementScrollFader.jsx @@ -42,6 +42,10 @@ class ElementScrollFader extends React.Component { if(rect.top > window.innerHeight / 2) return; this.setState({visible: true}); this.detachListener();//stop Listening + + if(this.props.onVisible) { + this.props.onVisible(this.refs.fader); + } } componentWillUnmount() {