diff --git a/public/objects/animation/fade/ElementScrollFader.jsx b/public/objects/animation/fade/ElementScrollFader.jsx index 2762264..f3d515c 100644 --- a/public/objects/animation/fade/ElementScrollFader.jsx +++ b/public/objects/animation/fade/ElementScrollFader.jsx @@ -41,21 +41,10 @@ export default class ElementScrollFader extends React.Component { } 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("DOMContentLoaded", this.updateRectangleBound); } componentWillUnmount() { - return; this.detachListener(); } @@ -72,33 +61,24 @@ export default class ElementScrollFader extends React.Component { //Common functions detachListener() { document.removeEventListener('scroll', this.onScrollBound); - document.removeEventListener("DOMContentLoaded", this.updateRectangleBound); - - if(this.rectTimer) clearInterval(this.rectTimer); - if(this.initialCheckFunction) clearTimeout(this.initialCheckFunction); } checkEffect() { let { waiting, visible } = this.state; let { onVisible } = this.props; - - if(typeof window === typeof undefined) return; if(!this.refs.fader) return; + if(waiting) { this.setState({ waiting: false }); } if(visible) return this.detachListener(); - if(!this.rect) this.updateRectangle(); - //Get bounds - var rect = this.rect; + let rect = this.refs.fader.getBoundingClientRect() //If our top is at least half way UP the page, show - var doc = document.documentElement; - var top = (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0); - if(rect.top > top / 1.5) return; + if(rect.y > (window.innerHeight*0.75)) return; this.setState({ visible: true @@ -115,8 +95,6 @@ export default class ElementScrollFader extends React.Component { let { from, className } = this.props; let { visible, waiting } = this.state; - return
; - from = from || "top"; ["from"].forEach(e => delete newProps[e]); diff --git a/public/pages/home/sections/BannerSection.jsx b/public/pages/home/sections/BannerSection.jsx index e682fa9..e9e2e92 100644 --- a/public/pages/home/sections/BannerSection.jsx +++ b/public/pages/home/sections/BannerSection.jsx @@ -42,7 +42,7 @@ export default (props) => { > - + { Language.get("pages.home.banner.title") } { Language.get("pages.home.banner.subtitle") } diff --git a/public/pages/home/sections/ExistingWorkSection.jsx b/public/pages/home/sections/ExistingWorkSection.jsx index f9f42d4..1f4d6b1 100644 --- a/public/pages/home/sections/ExistingWorkSection.jsx +++ b/public/pages/home/sections/ExistingWorkSection.jsx @@ -77,7 +77,7 @@ const ExistingWorkFrame = (props) => { ); let box = ( - + { props.title } { props.description } @@ -142,6 +142,7 @@ export default (props) => { src={ require('@assets/images/work-showcase/kopalife.png') } title={ Language.get("pages.home.work.kopa.heading") } description={ Language.get("pages.home.work.kopa.description") } + test="true" /> {/* SMAI */}