-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
1,622 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,5 @@ tmp/ | |
|
||
# Renderer releases | ||
releases/ | ||
|
||
*.svelte |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.DS_Store | ||
node_modules | ||
/build | ||
/.svelte-kit | ||
/package | ||
.env | ||
.env.* | ||
!.env.example | ||
|
||
# Ignore files for PNPM, NPM and YARN | ||
pnpm-lock.yaml | ||
package-lock.json | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** @type { import("eslint").Linter.Config } */ | ||
module.exports = { | ||
root: true, | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:svelte/recommended', | ||
'prettier' | ||
], | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['@typescript-eslint'], | ||
parserOptions: { | ||
sourceType: 'module', | ||
ecmaVersion: 2020, | ||
extraFileExtensions: ['.svelte'] | ||
}, | ||
env: { | ||
browser: true, | ||
es2017: true, | ||
node: true | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['*.svelte'], | ||
parser: 'svelte-eslint-parser', | ||
parserOptions: { | ||
parser: '@typescript-eslint/parser' | ||
} | ||
} | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.DS_Store | ||
node_modules | ||
/build | ||
/dist | ||
/.svelte-kit | ||
/package | ||
.env | ||
.env.* | ||
!.env.example | ||
vite.config.js.timestamp-* | ||
vite.config.ts.timestamp-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
engine-strict=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Ignore files for PNPM, NPM and YARN | ||
pnpm-lock.yaml | ||
package-lock.json | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"useTabs": true, | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"printWidth": 100, | ||
"plugins": ["prettier-plugin-svelte"], | ||
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,210 @@ | ||
# @lottiefiles/dotlottie-svelte | ||
|
||
 | ||
 | ||
 | ||
 | ||
|
||
<p align="center"> | ||
<img src="https://user-images.githubusercontent.com/23125742/201124166-c2a0bc2a-018b-463b-b291-944fb767b5c2.png" /> | ||
</p> | ||
|
||
> 🚧 **Beta Alert:** We're still refining! The APIs in this package may undergo changes. | ||
## Contents | ||
|
||
* [Introduction](#introduction) | ||
* [What is dotLottie?](#what-is-dotlottie) | ||
* [Installation](#installation) | ||
* [Usage](#usage) | ||
* [Live Examples](#live-examples) | ||
* [APIs](#apis) | ||
* [Props](#props) | ||
* [Custom Playback Controls](#custom-playback-controls) | ||
* [Listening to Events](#listening-to-events) | ||
* [Development](#development) | ||
* [Setup](#setup) | ||
* [Dev](#dev) | ||
* [Build](#build) | ||
|
||
## Introduction | ||
|
||
A Svelte component for rendering [Lottie](https://lottiefiles.github.io/lottie-docs/) and [dotLottie](https://dotlottie.io) animations. It acts as a wrapper around the [`dotLottie`](../web/README.md) web player. | ||
|
||
### 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/). | ||
|
||
## Installation | ||
|
||
```bash | ||
npm install @lottiefiles/dotlottie-svelte | ||
``` | ||
|
||
## Usage | ||
|
||
```svelte | ||
<script lang="ts"> | ||
import { DotLottieSvelte } from '@lottiefiles/dotlottie-svelte'; | ||
</script> | ||
<DotLottieSvelte | ||
src="path/to/animation.lottie" | ||
loop | ||
autoplay | ||
/> | ||
``` | ||
|
||
## Live Examples | ||
|
||
## APIs | ||
|
||
### Props | ||
|
||
| Property name | Type | Required | Default | Description | | | ||
| ----------------------- | ------------------------------------------------------- | :------: | --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | - | | ||
| `autoplay` | boolean | | false | Auto-starts the animation on load. | | | ||
| `loop` | boolean | | false | Determines if the animation should loop. | | | ||
| `src` | string | | undefined | URL to the animation data (`.json` or `.lottie`). | | | ||
| `speed` | number | | 1 | Animation playback speed. 1 is regular speed. | | | ||
| `data` | string \| ArrayBuffer | | undefined | Animation data provided either as a Lottie JSON string or as an ArrayBuffer for .lottie animations. | | | ||
| `mode` | string | | "forward" | Animation play mode. Accepts "forward", "reverse", "bounce", "reverse-bounce". | | | ||
| `backgroundColor` | string | | undefined | Background color of the canvas. Accepts 6-digit or 8-digit hex color string (e.g., "#000000", "#000000FF"), | | | ||
| `segments` | \[number, number] | | undefined | Animation segments. Accepts an array of two numbers, where the first number is the start frame and the second number is the end frame. | | | ||
| `renderConfig` | RenderConfig | | undefined | Configuration for rendering the animation. | | | ||
| `dotLottieRefCallback` | (dotLottie: [DotLottie](../web/README.md#apis)) => void | | undefined | Callback function that receives a reference to the [`dotLottie`](../web/README.md) web player instance once instantiated. | | | ||
| `useFrameInterpolation` | boolean | | true | Determines if the animation should update on subframes. If set to false, the original AE frame rate will be maintained. If set to true, it will refresh at each requestAnimationFrame, including intermediate values. The default setting is true. | | | ||
| `autoResizeCanvas` | boolean | | true | Determines if the canvas should resize automatically to its container | | | ||
|
||
#### RenderConfig | ||
|
||
The `renderConfig` object accepts the following properties: | ||
|
||
| Property name | Type | Required | Default | Description | | ||
| ------------------ | ------ | :------: | ----------------------------- | ----------------------- | | ||
| `devicePixelRatio` | number | | window\.devicePixelRatio \| 1 | The device pixel ratio. | | ||
|
||
## Custom Playback Controls | ||
|
||
`DotLottieSvelte` component makes it easy to build custom playback controls for the animation. It exposes a `dotLottieRefCallback` prop that can be used to get a reference to the [`dotLottie`](../web/README.md#apis) web player instance. This instance can be used to control the playback of the animation using the methods exposed by the [`dotLottie`](../web/README.md#methods) web player instance. | ||
|
||
Here is an example: | ||
|
||
```svelte | ||
<script lang="ts"> | ||
import { DotLottieSvelte } from '@lottiefiles/dotlottie-svelte'; | ||
import type { DotLottie } from '@lottiefiles/dotlottie-svelte'; | ||
let dotLottie: DotLottie | null = null; | ||
function play() { | ||
dotLottie?.play(); | ||
} | ||
function pause() { | ||
dotLottie?.pause(); | ||
} | ||
function stop() { | ||
dotLottie?.stop(); | ||
} | ||
</script> | ||
<DotLottieSvelte | ||
src="path/to/your/animation.lottie" | ||
loop={true} | ||
autoplay={true} | ||
dotLottieRefCallback={(ref) => dotLottie = ref} | ||
/> | ||
<button on:click={play}>Play</button> | ||
<button on:click={pause}>Pause</button> | ||
<button on:click={stop}>Stop</button> | ||
``` | ||
|
||
You can find the list of methods that can be used to control the playback of the animation [here](../web/README.md#methods). | ||
|
||
## Listening to Events | ||
|
||
`DotLottieSvelte` component can receive a `dotLottieRefCallback` prop that can be used to get a reference to the [`dotLottie`](../web/README.md#apis) web player instance. This reference can be used to listen to player events emitted by the [`dotLottie`](../web/README.md#events) web instance. | ||
|
||
Here is an example: | ||
|
||
```svelte | ||
<script lang="ts"> | ||
import { DotLottieSvelte } from '@lottiefiles/dotlottie-svelte'; | ||
import type { DotLottie } from '@lottiefiles/dotlottie-svelte'; | ||
let dotLottie: DotLottie | null = null; | ||
function onLoaded() { | ||
console.log("Animation loaded"); | ||
} | ||
function onPlay() { | ||
console.log("Animation started"); | ||
} | ||
function onPause() { | ||
console.log("Animation paused"); | ||
} | ||
function onComplete() { | ||
console.log("Animation completed"); | ||
} | ||
function setupListeners(dotLottieInstance) { | ||
dotLottieInstance.addEventListener('load', onLoaded); | ||
dotLottieInstance.addEventListener('play', onPlay); | ||
dotLottieInstance.addEventListener('pause', onPause); | ||
dotLottieInstance.addEventListener('complete', onComplete); | ||
} | ||
function removeListeners(dotLottieInstance) { | ||
dotLottieInstance.removeEventListener('load', onLoaded); | ||
dotLottieInstance.removeEventListener('play', onPlay); | ||
dotLottieInstance.removeEventListener('pause', onPause); | ||
dotLottieInstance.removeEventListener('complete', onComplete); | ||
} | ||
onDestroy(() => { | ||
if (dotLottie) { | ||
removeListeners(dotLottie); | ||
} | ||
}); | ||
</script> | ||
<DotLottieSvelte | ||
src="path/to/your/animation.lottie" | ||
loop={true} | ||
autoplay={true} | ||
dotLottieRefCallback={(ref) => { | ||
dotLottie = ref; | ||
setupListeners(dotLottie); | ||
}} | ||
/> | ||
``` | ||
|
||
[dotLottie](../web/README.md#apis) instance exposes multiple events that can be listened to. You can find the list of events [here](../web/README.md#events). | ||
|
||
## Development | ||
|
||
### Setup | ||
|
||
```bash | ||
pnpm install | ||
``` | ||
|
||
### Dev | ||
|
||
```bash | ||
pnpm dev | ||
``` | ||
|
||
### Build | ||
|
||
```bash | ||
pnpm build | ||
``` |
Oops, something went wrong.