Added fix for elements that pre-exist on fade
This commit is contained in:
@ -29,13 +29,35 @@ class ElementScrollFader extends React.Component {
|
|||||||
|
|
||||||
this.state = { visible: false };
|
this.state = { visible: false };
|
||||||
this.onScrollBound = this.onScroll.bind(this);
|
this.onScrollBound = this.onScroll.bind(this);
|
||||||
|
this.checkEffectBound = this.checkEffect.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
|
if(!this.initialCheckFunction) {
|
||||||
|
this.initialCheckFunction = setTimeout(this.checkEffectBound, 300);
|
||||||
|
}
|
||||||
|
|
||||||
document.addEventListener('scroll', this.onScrollBound, true);
|
document.addEventListener('scroll', this.onScrollBound, true);
|
||||||
|
document.addEventListener("DOMContentLoaded", this.onScrollBound);
|
||||||
|
}
|
||||||
|
|
||||||
|
componentWillUnmount() {
|
||||||
|
this.detachListener();
|
||||||
}
|
}
|
||||||
|
|
||||||
onScroll(e) {
|
onScroll(e) {
|
||||||
|
this.checkEffect();
|
||||||
|
}
|
||||||
|
|
||||||
|
//Common functions
|
||||||
|
detachListener() {
|
||||||
|
document.removeEventListener('scroll', this.onScrollBound);
|
||||||
|
document.removeEventListener("DOMContentLoaded", this.onScrollBound);
|
||||||
|
if(this.initialCheckFunction) clearTimeout(this.initialCheckFunction);
|
||||||
|
}
|
||||||
|
|
||||||
|
checkEffect() {
|
||||||
|
if(!this.refs || !this.refs.fader) return;
|
||||||
//Get bounds
|
//Get bounds
|
||||||
var rect = this.refs.fader.getBoundingClientRect();
|
var rect = this.refs.fader.getBoundingClientRect();
|
||||||
//If our top is at least half way UP the page, show
|
//If our top is at least half way UP the page, show
|
||||||
@ -46,14 +68,7 @@ class ElementScrollFader extends React.Component {
|
|||||||
if(this.props.onVisible) {
|
if(this.props.onVisible) {
|
||||||
this.props.onVisible(this.refs.fader);
|
this.props.onVisible(this.refs.fader);
|
||||||
}
|
}
|
||||||
}
|
return true;
|
||||||
|
|
||||||
componentWillUnmount() {
|
|
||||||
this.detachListener();
|
|
||||||
}
|
|
||||||
|
|
||||||
detachListener() {
|
|
||||||
document.removeEventListener('scroll', this.onScrollBound);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
Reference in New Issue
Block a user