Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Stanko/react-animate-height
Lightweight React component for animating height using CSS transitions. Slide up/down the element, and animate it to any specific height.
https://github.com/Stanko/react-animate-height
Last synced: 3 months ago
JSON representation
Lightweight React component for animating height using CSS transitions. Slide up/down the element, and animate it to any specific height.
- Host: GitHub
- URL: https://github.com/Stanko/react-animate-height
- Owner: Stanko
- License: mit
- Created: 2017-03-05T08:12:42.000Z (over 7 years ago)
- Default Branch: v3
- Last Pushed: 2023-11-10T09:54:26.000Z (about 1 year ago)
- Last Synced: 2024-05-21T23:03:52.026Z (6 months ago)
- Language: TypeScript
- Homepage: https://muffinman.io/react-animate-height
- Size: 1.61 MB
- Stars: 744
- Watchers: 5
- Forks: 54
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# React Animate Height
[![npm version](https://img.shields.io/npm/v/react-animate-height.svg?style=flat-square)](https://www.npmjs.com/package/react-animate-height)
[![npm downloads](https://img.shields.io/npm/dm/react-animate-height.svg?style=flat-square)](https://www.npmjs.com/package/react-animate-height)No dependencies React component for animating height using CSS transitions.
Slide an element up and down or animate it to any specific height.
Content's opacity can be optionally animated as well (check `animateOpacity` prop bellow).CSS classes are applied in specific animation states, check `animationStateClasses` prop.
[Changelog](CHANGELOG.md)
### Version 3
This is version 3.x branch, rewritten to hooks, which means you'll need React version 16.8 or newer.
For version 2.x, check [v2 branch](https://github.com/Stanko/react-animate-height/tree/v2)
#### Breaking changes:
- Callback names changed (to avoid clashing with the native ones):
- `onAnimationStart` -> `onHeightAnimationStart`
- `onAnimationEnd` -> `onHeightAnimationEnd`## Demo
Live demo: [muffinman.io/react-animate-height](https://muffinman.io/react-animate-height/)
Because multiple people asked how to animate list items, I created this [simple example](https://codesandbox.io/s/react-animated-list-example-made-using-react-animate-height-je9q1) for that as well.
To build the examples locally, run:
```
npm install
npm start
```Then open [`http://127.0.0.1:8000/`](http://127.0.0.1:8000/) in your browser of choice browser.
Or play with this [sandbox](https://codesandbox.io/s/react-animate-height-v3-basic-example-ix6c5v).
## Quick start
Get it from npm
```
$ npm install --save react-animate-height
```Import and use it in your React app.
```jsx
import React, { useState } from 'react';
import AnimateHeight from 'react-animate-height';const Example = () => {
const [height, setHeight] = useState(0);return (
setHeight(height === 0 ? 'auto' : 0)}
>
{height === 0 ? 'Open' : 'Close'}
Your content goes here
Put as many React or HTML components here.
);
};
```### Props
- **height**: numeric or percentage value (ie. `'50%'`) or `'auto'`, required
When changed, element height will be animated to that height.
To slide up use0
, for slide down use'auto'
- **duration**: integer, default: `500`
Duration of the animation in milliseconds
- **delay**: integer, default: `0`
Animation delay in milliseconds
- **easing**: string, default: `'ease'`
CSS easing function to be applied to the animation
- **id**: string
HTML `id` attribute.
- **className**: string
CSS class to be applied to the element
**Please note that you shouldn't apply properties that are messing with the layout (like `display`, `height`...), as these might break height calculations**
- **ref**: `React.MutableRefObject`
Reference to the main div element.
```tsx
const wrapperDiv = useRef(null);
```- **contentRef**: `React.MutableRefObject`
Reference to the content div element.
```tsx
const contentDiv = useRef(null);
```- **style**: object
CSS style object, it will be merged with inline styles of the component
**Please note that you shouldn't apply properties that are messing with the layout (`display`, `height` are omitted from the type already), as these might break height calculations**
- **contentClassName**: string
CSS class to be applied to content wrapper element
**Please note that you shouldn't apply properties that are messing with the layout (like `display`, `height`...), as these might break height calculations**
- **animationStateClasses**: object
Object containing CSS class names for animation states, default:
```
{
animating: 'rah-animating',
animatingUp: 'rah-animating--up',
animatingDown: 'rah-animating--down',
static: 'rah-static',
animatingToHeightZero: 'rah-animating--to-height-zero',
animatingToHeightAuto: 'rah-animating--to-height-auto',
animatingToHeightSpecific: 'rah-animating--to-height-specific',
staticHeightZero: 'rah-static--height-zero',
staticHeightAuto: 'rah-static--height-auto',
staticHeightSpecific: 'rah-static--height-specific',
}
```Please note that this one will be merged with the default object and cached when component is created,
so changing it afterwards will have no effect.- **onHeightAnimationStart**: function
Callback which will be called when animation starts.
This first argument passed to this callback is an object containing `newHeight`, the pixel value of the height at which the animation will end.
- **onHeightAnimationEnd**: function
Callback which will be called when animation ends.
This first argument passed to this callback is an object containing `newHeight`, the pixel value of the height at which the animation ended.
- **applyInlineTransitions**: boolean, default: `true`
If this flag is set to `false` only CSS classes will be applied to the element and inline
transition styles will not be present.- **animateOpacity**: boolean, default: `false`
If set to `true` content will fade-in (and fade-out) while height is animated.
- **aria-hidden**: boolean
By default, library will set `aria-hidden` to `true` when height is zero. If you wish to override it, you can pass the prop yourself.
- **disableDisplayNone**: boolean, default: `false`
By default, library will set `display: none` when height is zero. This prop allows you to disable that behavior and handle it yourself. It is useful when using [auto height](#user-content-animate-height-on-content-change), check [this issue](https://github.com/Stanko/react-animate-height/issues/16) for more info. Please be careful not to break accessibility when using this prop.
Additional props will be passed to the wrapper div, to make adding attrs like `aria-*` easier.
## Accessibility
Library will hide the content using `display: hidden` when height props is 0. It will also apply `aria-hidden="true"` in the same case, but you can override it by passing `aria-hidden` prop yourself.
When using a button to toggle height, make sure you add `aria-expanded` and `aria-controls` to make everything accessible. Here's an example:
```jsx
Toggle
Content
```
### Reduced motion
Component checks for `prefers-reduced-motion` on start and disables animations if it is set to true. Please note that component doesn't listen for potential changes of `prefers-reduced-motion` option.
## Animate height on content change
It is not built in, but you can use `AnimateHeight` and [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver) to automatically animate height on content change. I created a small example for you here:
- [Source code](./docs/auto-height.tsx)
- [Demo](https://muffinman.io/react-animate-height/#demo-3)## Gotchas
### Collapsing margins
While it is animating, component has `overflow: hidden`. When the animation is finished and height is set to "auto", `overflow: hidden` is removed. At that moment, any margins you have on the content inside `AnimateHeight` will collapse, causing content to "jump". To avoid this, just use padding inside the `AnimateHeight` instead of margins.
### Bounded flexboxes
If `AnimateHeight` is a flex child and it's parent has a fixed height, animation won't work.
To fix this, you just need to add the following CSS rule to the `AnimateHeight` instance.```css
flex-shrink: 0;
```You can do it by passing a `className` or directly in the `style` prop
```jsx
```
Check the [issue #89](https://github.com/Stanko/react-animate-height/issues/89) for the example and more details.
## License
[MIT](https://github.com/Stanko/react-animate-height/blob/master/LICENSE)