Skip to content

Instantly share code, notes, and snippets.

@elierotenberg
Created August 2, 2014 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elierotenberg/06f15b3fd1754b87663b to your computer and use it in GitHub Desktop.
Save elierotenberg/06f15b3fd1754b87663b to your computer and use it in GitHub Desktop.
/** @jsx React.DOM */
var React = require("react");
var AnimateMixin = require("react-animate");
var SimpleAnimation = React.createClass({
mixins: [AnimateMixin],
getInitialState: function getInitialState() {
return {
showoff: false,
};
},
showOff: function showOff() {
this.animate("my-custom-animation", {
opacity: 0,
}, {
opacity: 1,
}, "cubic-in-out", 5000, this.stopShowingOff);
this.setState({
showoff: true,
});
},
stopShowingOff: function stopShowingOff() {
this.setState({
showoff: false,
});
},
render: function render() {
return (
<div>
<a onClick={this.showOff}>Click to show off !</a>
{ this.state.showoff ? (
<div style={this.getAnimatedStyle("my-custom-animation")}>What a show off !</div>
) : null }
</div>
);
},
});
module.exports = SimpleAnimation;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment