3.1.0 • Published 7 years ago

react-motion-drawer v3.1.0

Weekly downloads
3,427
License
MIT
Repository
github
Last release
7 years ago

Example | Usage | API | Changelog

Navigation drawer built with the awesome react-motion by @chenglou and react-hammerjs by @JedWatson

npm version

Example

A live demo is available here!

To run the example locally, run:

$ yarn
$ yarn serve

Installation

Via npm:

npm install react-motion-drawer

Usage

import Drawer from 'react-motion-drawer';
  <Drawer open={false} onChange={onChange}>
    <ul>
      <li>Home</li>
      <li>About</li>
      <li>Settings</li>
    </ul>
  </Drawer>

If you want the drawer on the right side of the screen you need the following css.

  body {
    overflow: hidden;
  }

Hooking into the animation

You can hook into the animation by passing a function as the child component.

  <Drawer open={false} width={300} onChange={onChange}>
    { val =>
      <ul style={{ opacity: 300 / val }}>
        <li>Home</li>
        <li>About</li>
        <li>Settings</li>
      </ul>
    }
  </Drawer>

API

Props

  • zIndex: number - z-index of the drawer (default 10000)
  • noTouchOpen: bool - can a user pan to open (default false)
  • noTouchClose: bool - can a user pan to close(default false)
  • onChange: func - called when the drawer is open (default () => {})
  • drawerStyle: object - additional drawer styles
  • className: object - additional drawer className
  • overlayClassName: object - additional overlay className
  • config: object - configuration of the react-motion animation (default {stiffness: 350, damping: 40})
  • open: bool - states if the drawer is open (default false)
  • width: number - width of the drawer (default 300)
  • height: number - height of the drawer (default '100%')
  • handleWidth: number - width of the handle (default 20)
  • peakingWidth: number - width that the drawer peaks on press (default 50)
  • panTolerance: number - tolerance until the drawer starts to move (default 50)
  • right: bool - drawer on the right side of the screen (default false)
  • overlayColor: string - color of the overlay (default rgba(0, 0, 0, 0.4))
  • fadeOut: bool - fade out (default false)
  • offset: number - offset of the drawer (default 0)

License

MIT © Christoph Hermann

3.1.0

7 years ago

3.0.4

7 years ago

3.0.3

7 years ago

3.0.2

7 years ago

3.0.1

7 years ago

2.1.7

8 years ago

2.1.6

8 years ago

2.1.5

8 years ago

2.1.4

8 years ago

2.1.3

8 years ago

2.1.2

8 years ago

3.0.0

10 years ago

2.1.0

10 years ago

2.0.1

10 years ago

2.0.0

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago