Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LottieFiles/dotlottie-web
Official LottieFiles player for rendering Lottie and dotLottie animations in the web. Supports React, Vue, Svelte, SolidJS and Web Components.
https://github.com/LottieFiles/dotlottie-web
animation canvas dotlottie easy immersive javascript lottie painless thorvg web
Last synced: 4 days ago
JSON representation
Official LottieFiles player for rendering Lottie and dotLottie animations in the web. Supports React, Vue, Svelte, SolidJS and Web Components.
- Host: GitHub
- URL: https://github.com/LottieFiles/dotlottie-web
- Owner: LottieFiles
- License: mit
- Created: 2023-10-20T06:42:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-29T14:59:03.000Z (5 days ago)
- Last Synced: 2024-10-29T17:12:15.870Z (5 days ago)
- Topics: animation, canvas, dotlottie, easy, immersive, javascript, lottie, painless, thorvg, web
- Language: TypeScript
- Homepage: https://developers.lottiefiles.com/docs/dotlottie-player/
- Size: 29.2 MB
- Stars: 179
- Watchers: 7
- Forks: 11
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
![CI](https://github.com/LottieFiles/dotlottie-web/workflows/main/badge.svg)
![GitHub contributors](https://img.shields.io/github/contributors/LottieFiles/dotlottie-web)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](CODE_OF_CONDUCT.md)
![GitHub](https://img.shields.io/github/license/LottieFiles/dotlottie-web)
dotLottie Web
Streamline your web animations with LottieFiles' official players for dotLottie and Lottie animations. Designed for quick integration, these packages help developers swiftly bring animated visuals into web projects with minimal effort.
# What is dotLottie?
dotLottie is an open-source file format that aggregates one or more Lottie files and their associated resources into a single file. They are ZIP archives compressed with the Deflate compression method and carry the file extension of ".lottie".
[Learn more about dotLottie](https://dotlottie.io/).
## Contents
* [Packages](#packages)
* [Getting Started](#getting-started)
* [Prerequisites](#prerequisites)
* [Setup](#setup)
* [Live Examples](#live-examples)
* [Local Examples](#local-examples)
* [Development](#development)
* [Building Packages](#building-packages)
* [Running Locally](#running-locally)
* [Scripts](#scripts)
* [Contributing](#contributing)
* [License](#license)### Packages
The monorepo contains the following package:
| Package | Description |
| -------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **[@lottiefiles/dotlottie-web](packages/web/README.md)** | A JavaScript library for rendering Lottie and dotLottie animations in the browser or Node.js. |
| **[@lottiefiles/dotlottie-react](packages/react/README.md)** | A React component wrapper for `dotlottie-web` that provides a declarative API for rendering Lottie and dotLottie animations and UI controls for interacting with them. |
| **[@lottiefiles/dotlottie-wc](packages/wc/README.md)** | A Web Component wrapper for `dotlottie-web` that provides a declarative API for rendering Lottie and dotLottie animations and UI controls for interacting with them. |
| **[@lottiefiles/dotlottie-vue](packages/vue/README.md)** | A Vue component wrapper for `dotlottie-web` that provides a declarative API for rendering Lottie and dotLottie animations and UI controls for interacting with them. |
| **[@lottiefiles/dotlottie-svelte](packages/svelte/README.md)** | A Svelte component wrapper for `dotlottie-web` that provides a declarative API for rendering Lottie and dotLottie animations and UI controls for interacting with them. |> Note: Each package has its own README.md with detailed documentation on usage and APIs.
### Getting Started
To contribute to this monorepo or use its packages in your project, follow these setup steps:
#### Prerequisites
Ensure you have the following installed:
* Node.js version 18 or greater
* `pnpm` version 8#### Setup
Clone the monorepo:
```bash
git clone https://github.com/LottieFiles/dotlottie-web.git
cd dotlottie-web
```Install dependencies:
```bash
pnpm install
```### Live Examples
* `@lottiefiles/dotlottie-web`
* Getting Started
* Controlling Animation Playback
* Dynamic Animation Loading
* Multi Animations .lottie file
* Advanced Animation Layout
* Named Markers
* dotLottie theming* `@lottiefiles/dotlottie-react`
* Getting Started
* Custom Playback Controls* `@lottiefiles/dotlottie-vue`
* Getting Started### Local Examples
Discover how to implement and utilize the dotlottie-web packages with our example applications. These examples serve as a practical guide to help you understand how to integrate Lottie and dotLottie animations into your web projects.
Available examples:
* [dotlottie-web-example](apps/dotlottie-web-example/src/main.ts): A basic typescript example app of how to use `@lottiefiles/dotlottie-web` to render a Lottie or dotLottie animation in the browser.
* [dotlottie-web-node-example](apps/dotlottie-web-node-example/index.ts): This example demonstrates how to use the `@lottiefiles/dotlottie-web` in a Node.js environment. It showcases controlling animation playback, rendering frame by frame, and converting a dotLottie animation into a GIF file. for more information, see the [README](apps/dotlottie-web-node-example/README.md).#### Running Examples
* Clone the repository:
```bash
git clone https://github.com/LottieFiles/dotlottie-web.git
cd dotlottie-web
```* Install dependencies:
```bash
pnpm install
```* Build the packages:
```bash
pnpm run build
```* Run the app:
```bash
# Change directory to the example app folder
cd apps/dotlottie-web-example
pnpm run dev
```Feel free to modify and play around with the code to see how changes affect the animations.
### Development
#### Building Packages
To build all packages within the monorepo:
```bash
pnpm run build
```#### Running Locally
To start a local development environment for all packages:
```bash
pnpm run dev
```#### Scripts
Here's a brief explanation of the scripts available in the root package.json:
* `build`: Builds all packages using turbo.
* `changelog`: Adds a changeset to generate changelog and version updates.
* `clean`: Cleans up the repository by removing development artifacts.
* `dev`: Runs all packages in development/watch mode.
* `format`: Formats the codebase using Prettier and Remark.
* `lint`: Lints the codebase using ESLint.
* `test`: Runs tests across all packages.
* `type-check`: Checks for TypeScript type errors.For a full list of available scripts, see the `scripts` section in `package.json`.
### Contributing
We welcome contributions to any of the packages in this monorepo. Please read our [Contributing Guidelines](CONTRIBUTING.md) and our [Code of Conduct](CODE_OF_CONDUCT.md) to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to the project.
### License
[MIT](LICENSE) © [LottieFiles](https://www.lottiefiles.com)