Created
June 19, 2017 07:01
-
-
Save thiagodebastos/c94b5fce3fad14794302baa35b54ebaf to your computer and use it in GitHub Desktop.
Animating React with GreenSock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.Header { | |
height: 50px; | |
max-width: 100%; | |
box-sizing: border-box; | |
border: 1px solid black; | |
color: white; | |
text-transform: uppercase; | |
background-color: rebeccapurple; | |
} | |
.isLoaded { | |
background-color: red; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
// import {findDOMNode} from 'react-dom' | |
import { TweenMax } from 'gsap' | |
import './Header.css' | |
class Header extends Component { | |
state = { | |
isLoaded: false, | |
isExpanded: false | |
} | |
componentDidMount() { | |
} | |
expand(el){ | |
TweenMax.to(el, .5, {height: '100vh'}) | |
} | |
shrink(el){ | |
TweenMax.to(el, 1, {height: '10vh'}) | |
} | |
fadeIn(el) { | |
TweenMax.to(el, .5, {autoAlpha: 1}) | |
} | |
slideFromLeft(el){ | |
TweenMax.from(el, 0.5, {x: -100}) | |
} | |
handleClick(el) { | |
this.setState({isExpanded: !this.state.isExpanded}) | |
this.state.isExpanded ? | |
this.shrink(this.headerRef) : | |
this.expand(this.headerRef) | |
} | |
render () { | |
return ( | |
<div className={`Header ${this.state.isLoaded ? 'isLoaded' : ''}`} | |
ref={node => {this.headerRef = node}} | |
onClick={this.handleClick.bind(this)} | |
> | |
</div> | |
) | |
} | |
} | |
export default Header |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment