Lightweight, dynamic, zero-dependency (and very tasty) burger for React.
Check out the live demo: https://mattvox.github.io/react-css-burger
yarn add react-css-burger
Or with npm
npm install --save react-css-burger
This delicious burger uses sensible defaults, so only minimal configuration via props is necessary.
Renders a basic, "boring" burger
import Burger from 'react-css-burger';
class App extends Component {
state = {
active: false,
};
render() {
return (
<Burger
onClick={() => this.setState({ active: !this.state.active })}
active={this.state.active}
/>
);
}
}
Renders a burger with the "arrow" animation, in pink, with a hover opacity of 80%, at 120% scale.
import Burger from 'react-css-burger';
class App extends Component {
state = {
active: false,
};
render() {
return (
<Burger
onClick={() => this.setState({ active: !this.state.active })}
active={this.state.active}
burger="arrow"
color="pink"
hoverOpacity={0.8}
scale={1.2}
/>
);
}
}
Burger animations are set with the burger
prop. To see all the available animations in action, please check out the live demo at https://mattvox.github.io/react-css-burger. The default animation is "boring", although this can be substituted for any one of the following strings values:
arrow
arrowalt
arrowturn
boring
collapse
elastic
emphatic
minus
slider
spin
spring
squeeze
stand
vortex
3dx
3dy
3dxy
React CSS Burger uses CSS Variables to provide a dynamic experience, ensuring the perfect, and most delicious burger for every situation. All properties are optional, although active
must be used to toggle the burger's state.
active
- Boolean - toggles the burger state (see above example)onClick
- Function - usually used to toggle the burger's state (see above example)burger
- String - sets the specific animation (see animations above)color
- String - sets the burger's color value (ie. 'pink' or '#AD2E74')hoverOpacity
- Number - sets the opacity when hovered (ie. 0.8)marginTop
- String - sets the burger's margin-top (ie. '25px')marginTop
- String - sets the burger's margin-left (ie. '25px')scale
- Number - sets the burger's scale value (ie. 1.25)style
- Object - style object is passed through to allow for custom styling (YMMV)
React CSS Burger utilizes modern CSS3 features, such as CSS variables, and is only meant for use with modern browsers, but smart fallbacks are provided to allow for graceful degradation when viewed on an older browser.
Not using React? Check out the project this one is based on: Jonathan Suh's Hamburgers
This component is heavily inspired by Jonathan Suh's Hamburgers and implements almost all of his original CSS.
MIT © mattvox