Skip to content

Instantly share code, notes, and snippets.

@elierotenberg
Created August 2, 2014 17:03
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/b1c8662d2b1eeae0df97 to your computer and use it in GitHub Desktop.
Save elierotenberg/b1c8662d2b1eeae0df97 to your computer and use it in GitHub Desktop.
SpinWheel.jsx
/** @jsx React.DOM */
var React = require("react");
var AnimateMixin = require("react-animate");
var fromCSS = require("react-css").fromCSS;
var from = fromCSS("{" +
"transform: rotate(0deg);" +
"background-color: blue;" +
"margin: 50px;" +
"width: 200px;" +
"}");
var to = fromCSS("{" +
"transform: rotate(359.9deg);" +
"background-color: blue;" +
"margin: 50px;" +
"width: 200px;" +
"}");
var SpinWheel = React.createClass({
mixins: [AnimateMixin],
getInitialState: function getInitialState() {
return {
spinning: false,
};
},
spin: function spin() {
this.animate("spinning", from, to, "linear", 5000, this.spin);
this.setState({
spinning: true,
});
},
render: function render() {
return (
<div>
<a onClick={this.spin}>Click to spin !</a>
{ this.state.spinning ? (
<div style={this.getAnimatedStyle("spinning")}>Spin to win</div>
) : null }
</div>
);
},
});
module.exports = SpinWheel;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment