Cleaned up Element Scroll Fader a touch, this function can do a lot better though..

This commit is contained in:
2018-10-24 17:30:51 +11:00
parent f1b10e223e
commit b9b69ef222
4 changed files with 16 additions and 18 deletions

View File

@ -23,7 +23,9 @@
import React from 'react';
class ElementScrollFader extends React.Component {
import Styles from './ElementScrollFader.scss';
export default class ElementScrollFader extends React.Component {
constructor(props) {
super(props);
@ -105,25 +107,17 @@ class ElementScrollFader extends React.Component {
}
render() {
let clazz = "o-element-scroll-fader";
let newProps = {...this.props};
let { from, visible, waiting, className } = this.props;
if(this.props.from) {
clazz += " from-" + this.props.from
} else {
clazz += " from-top";
}
if(this.state.visible || this.state.waiting) {
clazz += " is-visible";
}
from = from || "top";
if(this.props.className) clazz += " " + this.props.className;
["from","visible","waiting"].forEach(e => delete newProps[e]);
return (
<div className={ clazz } ref="fader">
{ this.props.children}
</div>
);
let clazz = `o-element-scroll-fader from-${from}`;
if(visible || waiting) clazz += " is-visible";
if(className) clazz += ` ${className}`;
return <div {...newProps} className={ clazz } ref="fader" />
}
}
export default ElementScrollFader;

View File

@ -10,6 +10,8 @@
* Version:
* 1.0.0 - 2018/06/08
*/
@import '~@styles/global';
$o-element-scroll-fader--speed: 0.75s;
$o-element-scroll-fader--amount: 15%;

View File

@ -23,6 +23,8 @@
import React from 'react';
import Styles from './Background.scss';
export default function(props) {
let style = props.style || "test";
let styleClassPrefix = "o-background--style-"+style;