1.2.4 • Published 4 months ago

react-lottie v1.2.4

Weekly downloads
153,463
License
MIT
Repository
github
Last release
4 months ago

Lottie Animation View for React (Angular, Vue)

npm version

Demo

https://chenqingspring.github.io/react-lottie

Wapper of bodymovin.js

bodymovin is Adobe After Effects plugin for exporting animations as JSON, also it provide bodymovin.js for render them as svg/canvas/html.

Why Lottie?

Flexible After Effects features

We currently support solids, shape layers, masks, alpha mattes, trim paths, and dash patterns. And we’ll be adding new features on a regular basis.

Manipulate your animation any way you like

You can go forward, backward, and most importantly you can program your animation to respond to any interaction.

Small file sizes

Bundle vector animations within your app without having to worry about multiple dimensions or large file sizes. Alternatively, you can decouple animation files from your app’s code entirely by loading them from a JSON API.

Learn morehttp://airbnb.design/lottie/

Looking for lottie files › https://www.lottiefiles.com/

Installation

Install through npm:

npm install --save react-lottie

Usage

Import pinjump.json.json as animation data

import React from 'react'
import Lottie from 'react-lottie';
import * as animationData from './pinjump.json'

export default class LottieControl extends React.Component {

  constructor(props) {
    super(props);
    this.state = {isStopped: false, isPaused: false};
  }

  render() {
    const buttonStyle = {
      display: 'block',
      margin: '10px auto'
    };

    const defaultOptions = {
      loop: true,
      autoplay: true, 
      animationData: animationData,
      rendererSettings: {
        preserveAspectRatio: 'xMidYMid slice'
      }
    };

    return <div>
      <Lottie options={defaultOptions}
              height={400}
              width={400}
              isStopped={this.state.isStopped}
              isPaused={this.state.isPaused}/>
      <button style={buttonStyle} onClick={() => this.setState({isStopped: true})}>stop</button>
      <button style={buttonStyle} onClick={() => this.setState({isStopped: false})}>play</button>
      <button style={buttonStyle} onClick={() => this.setState({isPaused: !this.state.isPaused})}>pause</button>
    </div>
  }
}

props

The <Lottie /> Component supports the following components:

options required

the object representing the animation settings that will be instantiated by bodymovin. Currently a subset of the bodymovin options are supported:

loop options default: false

autoplay options default: false

animationData required

rendererSettings required

width optional default: 100%

pixel value for containers width.

height optional default: 100%

pixel value for containers height.

eventListeners optional [default: []]

This is an array of objects containing a eventName and callback function that will be registered as eventlisteners on the animation object. refer to bodymovin#events where the mention using addEventListener, for a list of available custom events.

example:

eventListeners=[
  {
    eventName: 'complete',
    callback: () => console.log('the animation completed:'),
  },
]

Related Projects

Contribution

Your contributions and suggestions are heartily welcome.

License

MIT

@sprucelabs/react-heartwood-componentsnss-react-libw222w111w123w456vf-123vida-cmsdeadbolt-appkashink-lib-testilottienext-pwa-rastreio-iconexenotarylog-clientsimple-widget@mehdi9795/componentsmahiro-uikit2testing-citric@bumped-inc/loyalty.designnarilearsi-demolean-link-web-sdktemp-connect-ui-acceltest-connect-bundlerfeedback-place-react@infinitebrahmanuniverse/nolb-react-lo@wxshylion/bc-nav-pagefule-ui@mo_dev/bitsoute-ds-stat-tilekuikpay-sdkhol-ui-sectionsjawwygamification@everything-registry/sub-chunk-2565@renewvate/ren-designer-viewsjawwy_gamificationjawwy_gamification_webdevyx-uidireflow-testdk-next-libraryjust-publish-itscui-comp-navscooper-aiaudiodiffuse-dsdino-commondino-market-common-uidino-market-ui-seedworkdino-market-ui-seedwork-testdino-market-common@crumb-app/crumb-reactconnctuicarlosgut@darkblock.io/npm-shared-components@darkblock.io/shared-components@darkblock.io/sol-widget-r16@darkblock.io/darkblock-widgetscredify-react-componentscotf-template@cybergenios/button@develop-fapp/ui-kit-fapprgs-componentsdash-extensionslocki-dashboard-navigationsunglassesandframes-uiimakineko-uikitshape-libraryshowcase-editsocialbureau-uikitsetlib-components-desafio-greenlidezhushoul-min-componentssellcar-design-systemkdan-cloudtcfw-showcase-editeagle-idtriepay-widgettrekhaak-labels-configuratortroila3d-uiuiboard-componentstttttt-kjhstheia-web-dsmrv-design-systemnext-gen-muitest-citricmk-report-app-view@gentlemen/live-player@gentlemen/lottie-buttonvontery-fishingtown-uikit@getstation/authentication@getstation/authentication-uidual-input-componenttest-lottietempppppppppsys-lbpm-testtesttbredcrumtestttbuildbabeltestttbuildbabelfinaltestttbuildbabelfinal2testconnectfinalfinaltestconnectttttttttestconnectv1the-vonder-uikitvf-dummy-lib
1.2.4

4 months ago

1.2.3

6 years ago

1.2.2

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago