From 914b1beef823990238d25bb1ce8c93103e951ac3 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 6 Apr 2018 07:23:11 +1000 Subject: [PATCH] Last commit before refactor --- package.json | 3 +- public/components/Page.jsx | 2 +- .../components/background/BackgroundLayer.jsx | 26 +++++++ .../background/BackgroundLayers.jsx | 64 ++++++++++++++++++ public/components/sections/Poly.jsx | 20 +----- public/components/sections/ThreeSection.jsx | 14 ++-- public/images/space.png | Bin 439 -> 474 bytes .../styles/components/_background-layer.scss | 44 ++++++++++++ public/styles/components/_footer.scss | 3 +- public/styles/components/_page.scss | 10 ++- .../components/_section--style-three.scss | 3 +- public/styles/components/_section.scss | 1 + public/styles/index.scss | 1 + 13 files changed, 159 insertions(+), 32 deletions(-) create mode 100644 public/components/background/BackgroundLayer.jsx create mode 100644 public/components/background/BackgroundLayers.jsx create mode 100644 public/styles/components/_background-layer.scss diff --git a/package.json b/package.json index 2ba7a23..d286098 100644 --- a/package.json +++ b/package.json @@ -36,8 +36,7 @@ "react-redux": "^5.0.7", "react-router": "^4.2.0", "react-router-dom": "^4.2.2", - "redux": "^3.7.2", - "three": "^0.90.0" + "redux": "^3.7.2" }, "devDependencies": { "babel-cli": "^6.26.0", diff --git a/public/components/Page.jsx b/public/components/Page.jsx index 298b198..5f1c451 100644 --- a/public/components/Page.jsx +++ b/public/components/Page.jsx @@ -19,7 +19,7 @@ class Page extends React.Component { render() { let clazz = "c-page"; if(this.props.className) clazz += " " + this.props.className; - + return (
{this.props.children} diff --git a/public/components/background/BackgroundLayer.jsx b/public/components/background/BackgroundLayer.jsx new file mode 100644 index 0000000..51667f1 --- /dev/null +++ b/public/components/background/BackgroundLayer.jsx @@ -0,0 +1,26 @@ +/* + * Background Layer + * Simple Background Layer. + * + * Dependencies: + * styles/components/_background-layer.scss + * + * Version: + * 1.0.0 - 2018/02/24 + */ +import React from 'react'; + +class BackgroundLayer extends React.Component { + constructor(props) { + super(props); + } + + render() { + return ( +
+
+ ); + } +} + +export default BackgroundLayer; diff --git a/public/components/background/BackgroundLayers.jsx b/public/components/background/BackgroundLayers.jsx new file mode 100644 index 0000000..9f766e1 --- /dev/null +++ b/public/components/background/BackgroundLayers.jsx @@ -0,0 +1,64 @@ +/* + * Background Layers + * Wrapper for the background layer's, provides logic in a cost efficient manner. + * + * Dependencies: + * ./BackgrundLayer.jsx + * + * Version: + * 1.0.0 - 2018/02/24 + */ +import React from 'react'; +import BackgroundLayer from './BackgroundLayer'; + +class BackgroundLayers extends React.Component { + constructor(props) { + super(props); + } + + componentDidMount() { + this.layerMounted = true; + this.onFrame(); + } + + componentWillUnmount() { + this.layerMounted = false; + } + + onFrame() { + if(this.layerMounted) { + requestAnimationFrame(this.onFrame.bind(this)); + } + + //https://stackoverflow.com/questions/2387136/cross-browser-method-to-determine-vertical-scroll-percentage-in-javascript + let h = document.documentElement, + b = document.body, + st = 'scrollTop', + sh = 'scrollHeight'; + let percent = (h[st]||b[st]) / ((h[sh]||b[sh]) - h.clientHeight) * 100; + + for(var i = 0; i < this.props.layers.length; i++) { + let layerContainer = this.refs["layer-"+i]; + let layer = layerContainer.refs.layer; + layer.style["transform"] = "translateY(-"+(percent/4)+"%) translateZ(0)"; + } + } + + render() { + let layers = []; + + for(var i = 0; i < this.props.layers.length; i++) { + let l = this.props.layers[i]; + let e = + layers.push(e); + } + + return ( +
+ {layers} +
+ ); + } +} + +export default BackgroundLayers; diff --git a/public/components/sections/Poly.jsx b/public/components/sections/Poly.jsx index 07c6085..6099eeb 100644 --- a/public/components/sections/Poly.jsx +++ b/public/components/sections/Poly.jsx @@ -17,32 +17,18 @@ import staticGIF from './../../images/static.gif'; const CUBES = [ { size: [1, 1, 1], - pos: [-4,-0.3,1], + pos: [-4,-1,1], velocity: [0.3, 0.1, 0], color: 0xFFFFFF, pvm: true }, { size: [1, 1, 1], - pos: [1,-0.8,-0.3], + pos: [0.5,-0,-0.3], velocity: [-0.3, 0.05, 0.1], color: 0xCCFFFF, pvm: true }, - { - size: [1, 1, 1], - pos: [-0.8,0.4,-5], - velocity: [0, -0.1, 0.1], - color: 0xf7ffb7, - pvm: true - }, - { - size: [1, 1, 1], - pos: [6,1,-2], - velocity: [0.2, 0.5, 0], - color: 0xffb7ee, - pvm: true - }, { size: [1, 1, 1], pos: [-3,1,0.3], @@ -52,7 +38,7 @@ const CUBES = [ }, { size: [0.8, 0.8, 0.8], - pos: [2.2,1,0.3], + pos: [3.4,-0.6,0.3], velocity: [1, 0.1, -0.1], color: 0xff66ab, pvm: true diff --git a/public/components/sections/ThreeSection.jsx b/public/components/sections/ThreeSection.jsx index ec29495..7cf8461 100644 --- a/public/components/sections/ThreeSection.jsx +++ b/public/components/sections/ThreeSection.jsx @@ -26,15 +26,15 @@ class ThreeSection extends React.Component { this.camera.position.z = 5; - this.ambient1 = new THREE.AmbientLight(0xFFCCFF, 0.2); - this.scene.add(this.ambient1); - this.ambient2 = new THREE.AmbientLight(0xFFFFFF, 0.5); - this.scene.add(this.ambient2); + //this.ambient1 = new THREE.AmbientLight(0xFFCCFF, 0.2); + //this.scene.add(this.ambient1); + //this.ambient2 = new THREE.AmbientLight(0xFFFFFF, 0.5); + //this.scene.add(this.ambient2); - this.light = new THREE.DirectionalLight(0x22BBFF, 0.5); + this.light = new THREE.DirectionalLight(0x22BBFF, 0.3); this.light.position.x = this.camera.position.x; this.light.position.y = this.camera.position.y; - this.light.position.z = this.camera.position.z + 8; + this.light.position.z = this.camera.position.z + 5; this.scene.add(this.light); if(typeof this.props.onSetup !== typeof undefined) { @@ -75,7 +75,7 @@ class ThreeSection extends React.Component { this.renderer.render(this.scene, this.camera); this.lastTime = now; - requestAnimationFrame(this.onFrame.bind(this)); + //requestAnimationFrame(this.onFrame.bind(this)); } render() { diff --git a/public/images/space.png b/public/images/space.png index d7b6e1e8813413aaf2a5b7646c6c9bd07fd71d27..5a19d2cbbafadbd5677bcec9cc98b2760062dafe 100644 GIT binary patch literal 474 zcmeAS@N?(olHy`uVBq!ia0vp^0t^g{4IE5BmUctwK_JDF?&#~tz_78O`%fY(kk47* z5n0T@zz3A$JIJ_WV)k30pk#?_L`iUdT1k0gQ7S`0VrE{6US4X6f{C7io{`~4h0Liy zW5YdN978JN-kx5VE07@K`fz%Pf`O>3fRGSRXz7wR1p^l5b*|+NRcr|iKxD&g;4poa z{j)pI>k22Imnlqp_Eji)qbL@1_O|M_ByB8c)_3omqhVN(sW}dbV#Dp)vO=;#>U{do zE_=1Rv>)j_eER36ONtj23m+9&-Vd`~dIoximRGKAN&y;c z;_2cTQW5v|^g>@|1`*eb`5p$M96U{3Z7nR!tNIc+7PVbz(9U2xV9dZ=!oap7oq_Fz z-H-Hpf8TXamnlBFc2(%)ZA)`Aqi;>aLY3ZKf=lYwInTS>QWT5?gxfDiZHF*iZMQ%e zo2#-;I;1G5@jd@~XHw${2Ok-|S4&lyCpONoh`F{7!q9oW7Q{FKRA(e0*}>z&rUX)8 zxd&?4>R%ZUGt9r