Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@lottiefiles/dotlottie-svelte
Advanced tools
Svelte component wrapper around the dotlottie-web library to render Lottie and dotLottie animations
A Svelte component for rendering Lottie and dotLottie animations. It acts as a wrapper around the dotLottie
web player.
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".
npm install @lottiefiles/dotlottie-svelte
<script lang="ts">
import { DotLottieSvelte } from '@lottiefiles/dotlottie-svelte';
</script>
<DotLottieSvelte
src="path/to/animation.lottie"
loop
autoplay
/>
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"), | ||
segment | [number, number] | undefined | Animation segment. 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) => void | undefined | Callback function that receives a reference to the dotLottie 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 |
The renderConfig
object accepts the following properties:
Property name | Type | Required | Default | Description |
---|---|---|---|---|
devicePixelRatio | number | window.devicePixelRatio | 1 | The device pixel ratio. |
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 player instance. This instance can be used to control the playback of the animation using the methods exposed by the dotLottie
web player instance.
Here is an example:
<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.
DotLottieSvelte
component can receive a dotLottieRefCallback
prop that can be used to get a reference to the dotLottie
web player instance. This reference can be used to listen to player events emitted by the dotLottie
web instance.
Here is an example:
<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 instance exposes multiple events that can be listened to. You can find the list of events here.
pnpm install
pnpm dev
pnpm build
FAQs
Svelte component wrapper around the dotlottie-web library to render Lottie and dotLottie animations
We found that @lottiefiles/dotlottie-svelte demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.