diff --git a/public/animation/fade/ElementScrollFader.jsx b/public/animation/fade/ElementScrollFader.jsx index 322e54c..8037b29 100644 --- a/public/animation/fade/ElementScrollFader.jsx +++ b/public/animation/fade/ElementScrollFader.jsx @@ -29,22 +29,35 @@ class ElementScrollFader extends React.Component { this.state = { visible: false }; this.onScrollBound = this.onScroll.bind(this); + this.updateRectangleBound = this.updateRectangle.bind(this); this.checkEffectBound = this.checkEffect.bind(this); + + this.rect = null; } componentDidMount() { + //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.onScrollBound); + document.addEventListener("DOMContentLoaded", this.updateRectangleBound); } componentWillUnmount() { this.detachListener(); } + //Used for rect calculation + updateRectangle() { + if(!this.refs || !this.refs.fader) return; + this.rect = this.refs.fader.getBoundingClientRect(); + } + onScroll(e) { this.checkEffect(); } @@ -52,18 +65,29 @@ class ElementScrollFader extends React.Component { //Common functions detachListener() { document.removeEventListener('scroll', this.onScrollBound); - document.removeEventListener("DOMContentLoaded", this.onScrollBound); + document.removeEventListener("DOMContentLoaded", this.updateRectangleBound); + + if(this.rectTimer) clearInterval(this.rectTimer); if(this.initialCheckFunction) clearTimeout(this.initialCheckFunction); } checkEffect() { if(typeof window === typeof undefined) return; if(!this.refs || !this.refs.fader) return; + if(this.state.visible) return this.detachListener(); + + if(!this.rect) this.updateRectangle(); + //Get bounds - var rect = this.refs.fader.getBoundingClientRect(); + var rect = this.rect; + //If our top is at least half way UP the page, show if(rect.top > window.innerHeight / 1.5) return; - this.setState({visible: true}); + + this.setState({ + visible: true + }); + this.detachListener();//stop Listening if(this.props.onVisible) { diff --git a/public/header/Header.jsx b/public/header/Header.jsx index f5c0572..c884c67 100644 --- a/public/header/Header.jsx +++ b/public/header/Header.jsx @@ -26,7 +26,7 @@ import Navbar from './../nav/navbar/Navbar'; export default function(props) { return ( -
+
); diff --git a/public/image/Image.jsx b/public/image/Image.jsx index 4faeec3..a235a24 100644 --- a/public/image/Image.jsx +++ b/public/image/Image.jsx @@ -30,7 +30,6 @@ export default class Image extends React.Component { } onLoad(e) { - console.log(this.props); if(this.props.onLoad) this.props.onLoad(e); } diff --git a/public/image/LoadableImage.jsx b/public/image/LoadableImage.jsx index 7c62bf2..81df0c8 100644 --- a/public/image/LoadableImage.jsx +++ b/public/image/LoadableImage.jsx @@ -24,6 +24,7 @@ import React from 'react'; import Image from './Image'; import Loader from './../loading/Loader'; +import BoxSizer from './../layout/BoxSizer'; class LoadableImage extends React.Component { constructor(props) { @@ -55,15 +56,20 @@ class LoadableImage extends React.Component { p.onLoad = this.onLoad.bind(this); let image = ; - let loader; + let loader,imageSizerDuringLoad; if(this.state.loading) { loader = ; + if(p.width && p.height) { + imageSizerDuringLoad = + } } return (
{ loader } + { imageSizerDuringLoad } +
{ image }
diff --git a/public/layout/BoxSizer.jsx b/public/layout/BoxSizer.jsx new file mode 100644 index 0000000..4338974 --- /dev/null +++ b/public/layout/BoxSizer.jsx @@ -0,0 +1,17 @@ +import React from 'react'; + +export default (props) => { + let height = 100;/* Percentage of width */ + + //TODO: Add more methods of resizing this box. + if(props.ratioWidth && props.ratioHeight) { + height = 100 / props.ratioWidth * props.ratioHeight; + } + + //Box Sizer + return ( +
+ ); +}; diff --git a/public/page/home/sections/BannerSection.jsx b/public/page/home/sections/BannerSection.jsx index 424863c..874a2cb 100644 --- a/public/page/home/sections/BannerSection.jsx +++ b/public/page/home/sections/BannerSection.jsx @@ -39,6 +39,7 @@ export default (props) => { height="1200" test="true" loadable + due > diff --git a/public/styles/index.scss b/public/styles/index.scss index 1553659..d779011 100644 --- a/public/styles/index.scss +++ b/public/styles/index.scss @@ -61,6 +61,7 @@ //Objects @import './objects/_background.scss'; @import './objects/_button.scss'; +@import './objects/_box-sizer.scss'; @import './objects/_content-box.scss'; @import './objects/_element-scroll-fader.scss'; @import './objects/_floating-content-box.scss'; diff --git a/public/styles/objects/_box-sizer.scss b/public/styles/objects/_box-sizer.scss new file mode 100644 index 0000000..44ff676 --- /dev/null +++ b/public/styles/objects/_box-sizer.scss @@ -0,0 +1,11 @@ +/* + * Box Sizer + * Simple box that acts like a ratio sizer + * + * Version: + * 1.0.0 - 2018/08/10 + */ +.o-box-sizer { + width: 100%; + /* padding-bottom will be set my JS */ +} diff --git a/public/styles/objects/_element-scroll-fader.scss b/public/styles/objects/_element-scroll-fader.scss index e016dd7..9d85af5 100644 --- a/public/styles/objects/_element-scroll-fader.scss +++ b/public/styles/objects/_element-scroll-fader.scss @@ -16,6 +16,7 @@ $o-element-scroll-fader--amount: 15%; .o-element-scroll-fader { opacity: 0; transition: all $o-element-scroll-fader--speed $s-animation--ease-out; + will-change: transform; $amt: $o-element-scroll-fader--amount;//Shorthand &.from-top { @include t-translate-y(-$amt); }