0.2.3 • Published 5 months ago

@justeattakeaway/pie-lottie-player v0.2.3

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
5 months ago

@justeattakeaway/pie-lottie-player

Source Code | NPM

@justeattakeaway/pie-lottie-player is a Web Component built using the Lit library. It offers a simple and accessible wrapper component for the animation library, Lottie, for web applications.

Table of Contents

Installation

To install any of our web components in your application, we would suggest following the getting started guide to set up your project.

Ideally, you should install the component using the @justeattakeaway/pie-webc package, which includes all of the components. Or you can install the individual component package.

Documentation

Properties

PropOptionsDescriptionDefault
animationSrcLottie animation JSON file URL or relative path. animationSrc and animationData are mutually exclusive.-
animationDataObject with Lottie animation data. animationSrc and animationData are mutually exclusive.-
loopDisabledtrue, falseBy default, animations loop. Setting this prop to true will prevent that behavior.false
autoPlayDisabledtrue, falseBy default, animations start playing as soon as their data is available. Setting this prop to true will prevent that behavior.false
speedDetermines the animation playback speed. 1 is normal speed, 2 is twice as fast, etc.1
direction"forward", "reverse"Sets the animation playback direction."forward"

Slots

This component does not have any slots. All content is controlled through properties.

CSS Variables

This component does not expose any CSS variables for style overrides.

Events

This component does not emit any custom events. In order to add event listening to this component, you can treat it like a native HTML element in your application.

Usage Examples

For HTML:

// import as module into a js file e.g. main.js
import '@justeattakeaway/pie-webc/components/pie-lottie-player.js';
<!-- pass js file into <script> tag -->
<pie-lottie-player animationSrc="./animation-file.json"></pie-lottie-player>
<script type="module" src="/main.js"></script>

For Native JS Applications, Vue, Angular, Svelte, etc.:

// Vue templates (using Nuxt 3)
import '@justeattakeaway/pie-webc/components/pie-lottie-player.js';

<pie-lottie-player animationSrc="./animation-file.json"></pie-lottie-player>

For React Applications:

import { PieLottiePlayer } from '@justeattakeaway/pie-webc/react/lottie-player.js';

<PieLottiePlayer animationSrc="./animation-file.json"></PieLottiePlayer>

Accessibility

Currently the component is always hidden from screen readers because animations should only be decorative and supplementary. Any important meaning and context should be presented alongside the animation as text.

For the users with the "Reduce motion" setting enabled, the animation will be paused on the first frame.

Questions and Support

If you work at Just Eat Takeaway.com, please contact us on #help-designsystem. Otherwise, please raise an issue on Github.

Contributing

Check out our contributing guide for more information on local development and how to run specific component tests.

0.1.0

7 months ago

0.1.1

7 months ago

0.2.1

5 months ago

0.2.0

5 months ago

0.2.3

5 months ago

0.0.5

12 months ago

0.2.2

5 months ago

0.0.3

1 year ago

0.0.4

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago

0.0.0

1 year ago