Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <Motion style={
  2. {
  3. x: spring(this.state.visible ? 0 : -100)
  4. }
  5. }>
  6. {
  7. function({x}) {
  8. return (
  9. <div onMouseDown={this.handleMouseDown} id="flyoutMenu" style={{
  10. transform: "translate3d(" + x + "vw, " + 15 + "vw, 0)"
  11. }}>
  12. <h2><a href="#">Home</a></h2>
  13. <h2><a href="#">About</a></h2>
  14. <h2><a href="#">Contact</a></h2>
  15. <h2><a href="#">Search</a></h2>
  16. </div>
  17. );
  18. }
  19. }
  20. </Motion>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement