kofi-clever / react-animate-height

Lightweight, no dependency React component for animating height using CSS transitions. Slide up/down the element, and to any specific height.

Home Page:https://stanko.github.io/react-animate-height

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Animate Height

npm version npm downloads

Lightweight, no dependency React component for animating height using CSS transitions. Slide up/down the element, and to any specific height.

CSS classes are applied in specific animation states, check animationStateClasses prop.

Demo

Live demo: stanko.github.io/react-animate-height

To build the examples locally, run:

npm install
npm start

Then open localhost:8080 in your browser of choice browser.

Quick start

Get it from npm

$ npm install --save react-animate-height

Import and use it in your React app.

import React, { Component } from 'react';
import AnimateHeight from 'react-animate-height';

export default class Example extends Component {
  state = {
    height: 0,
  };

  toggle = () => {
    const { height } = this.state;
    
    this.setState({
      height: height === 0 ? 'auto' : 0,
    });
  };

  render() {
    const { height } = this.state;
    
    return (
      <div>
        <button onClick={ this.toggle }>
          { height === 0 ? 'Open' : 'Close' }
        </button>

        <AnimateHeight
          duration={ 500 }
          height={ height } // see props documentation bellow
        >
          <h1>Your content goes here</h1>
          <p>Put as many React or HTML components here.</p>
        </AnimateHeight>
      </div>
    );
  }
}

Props

  • height: numeric or percentage value (ie. '50%') or 'auto', required

    When changed, element height will be animated to that height.
    To slide up use 0, for slide down use 'auto'

  • duration: integer, default: 250

    Duration of the animation in milliseconds

  • easing: string, default: 'ease'

    CSS easing function to be applied to the animation

  • 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

  • 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 (like display, height...), 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.

  • onAnimationStart: function

    Callback which will be called when animation starts

  • onAnimationEnd: function

    Callback which will be called when animation ends

  • 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.

Additional props will be passed to the wrapper div, to make adding attrs like aria-* easier.

License

MIT

About

Lightweight, no dependency React component for animating height using CSS transitions. Slide up/down the element, and to any specific height.

https://stanko.github.io/react-animate-height

License:MIT License


Languages

Language:JavaScript 97.4%Language:Shell 2.6%