Fixed (and improved) scroll fader.
This commit is contained in:
@ -41,21 +41,10 @@ export default class ElementScrollFader extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
return;
|
|
||||||
//Update rectangle
|
|
||||||
if(this.rectTimer) clearInterval(this.rectTimer);
|
|
||||||
this.rectTimer = setInterval(this.updateRectangleBound, 100);
|
|
||||||
|
|
||||||
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.updateRectangleBound);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
return;
|
|
||||||
this.detachListener();
|
this.detachListener();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -72,33 +61,24 @@ export default class ElementScrollFader extends React.Component {
|
|||||||
//Common functions
|
//Common functions
|
||||||
detachListener() {
|
detachListener() {
|
||||||
document.removeEventListener('scroll', this.onScrollBound);
|
document.removeEventListener('scroll', this.onScrollBound);
|
||||||
document.removeEventListener("DOMContentLoaded", this.updateRectangleBound);
|
|
||||||
|
|
||||||
if(this.rectTimer) clearInterval(this.rectTimer);
|
|
||||||
if(this.initialCheckFunction) clearTimeout(this.initialCheckFunction);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
checkEffect() {
|
checkEffect() {
|
||||||
let { waiting, visible } = this.state;
|
let { waiting, visible } = this.state;
|
||||||
let { onVisible } = this.props;
|
let { onVisible } = this.props;
|
||||||
|
|
||||||
if(typeof window === typeof undefined) return;
|
|
||||||
if(!this.refs.fader) return;
|
if(!this.refs.fader) return;
|
||||||
|
|
||||||
if(waiting) {
|
if(waiting) {
|
||||||
this.setState({
|
this.setState({
|
||||||
waiting: false
|
waiting: false
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if(visible) return this.detachListener();
|
if(visible) return this.detachListener();
|
||||||
if(!this.rect) this.updateRectangle();
|
|
||||||
|
|
||||||
//Get bounds
|
let rect = this.refs.fader.getBoundingClientRect()
|
||||||
var rect = this.rect;
|
|
||||||
|
|
||||||
//If our top is at least half way UP the page, show
|
//If our top is at least half way UP the page, show
|
||||||
var doc = document.documentElement;
|
if(rect.y > (window.innerHeight*0.75)) return;
|
||||||
var top = (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0);
|
|
||||||
if(rect.top > top / 1.5) return;
|
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
visible: true
|
visible: true
|
||||||
@ -115,8 +95,6 @@ export default class ElementScrollFader extends React.Component {
|
|||||||
let { from, className } = this.props;
|
let { from, className } = this.props;
|
||||||
let { visible, waiting } = this.state;
|
let { visible, waiting } = this.state;
|
||||||
|
|
||||||
return <div {...newProps} />;
|
|
||||||
|
|
||||||
from = from || "top";
|
from = from || "top";
|
||||||
|
|
||||||
["from"].forEach(e => delete newProps[e]);
|
["from"].forEach(e => delete newProps[e]);
|
||||||
|
@ -42,7 +42,7 @@ export default (props) => {
|
|||||||
>
|
>
|
||||||
<PageBoundary full>
|
<PageBoundary full>
|
||||||
<FloatingContentBox position="middle center" size="large" className="u-text-center">
|
<FloatingContentBox position="middle center" size="large" className="u-text-center">
|
||||||
<ElementScrollFader from="bottom">
|
<ElementScrollFader from="bottom" test="yes">
|
||||||
<Title>{ Language.get("pages.home.banner.title") }</Title>
|
<Title>{ Language.get("pages.home.banner.title") }</Title>
|
||||||
<Subtitle className="u-responsive--small-up">{ Language.get("pages.home.banner.subtitle") }</Subtitle>
|
<Subtitle className="u-responsive--small-up">{ Language.get("pages.home.banner.subtitle") }</Subtitle>
|
||||||
</ElementScrollFader>
|
</ElementScrollFader>
|
||||||
|
@ -77,7 +77,7 @@ const ExistingWorkFrame = (props) => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
let box = (
|
let box = (
|
||||||
<ElementScrollFader from={ props.fromRight }>
|
<ElementScrollFader from={ props.fromRight } test={ props.test }>
|
||||||
<ContentBox box>
|
<ContentBox box>
|
||||||
<Heading2>{ props.title }</Heading2>
|
<Heading2>{ props.title }</Heading2>
|
||||||
{ props.description }
|
{ props.description }
|
||||||
@ -142,6 +142,7 @@ export default (props) => {
|
|||||||
src={ require('@assets/images/work-showcase/kopalife.png') }
|
src={ require('@assets/images/work-showcase/kopalife.png') }
|
||||||
title={ Language.get("pages.home.work.kopa.heading") }
|
title={ Language.get("pages.home.work.kopa.heading") }
|
||||||
description={ Language.get("pages.home.work.kopa.description") }
|
description={ Language.get("pages.home.work.kopa.description") }
|
||||||
|
test="true"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{/* SMAI */}
|
{/* SMAI */}
|
||||||
|
Reference in New Issue
Block a user