Skip to content

zakarialaoui10/ziko-lottie

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ziko-lottie

Lottie player element for zikojs

Install

 npm i ziko-lottie

Usage

Node

import { LottiePlayer } from "ziko-lottie";
const Lottie = LottiePlayer(
    "https://assets1.lottiefiles.com/private_files/lf30_q2okh8lh.json"
    )
    .size("300px", "300px")
    .style({
        border : "1px darkblue solid"
    })
    Lottie.useControls()

Brwoser

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>zikojs</title>
</head>
<body>
    <script src="https://cdn.jsdelivr.net/npm/ziko@latest/dist/ziko.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/ziko-lottie@latest/dist/ziko-lottie.js"></script>
    <script>
    const { LottiePlayer } = ZikoLottie;
    const Lottie = LottiePlayer(
        "https://assets1.lottiefiles.com/private_files/lf30_q2okh8lh.json"
    )
    .size("300px", "300px")
    .style({
        border : "1px darkblue solid"
    })
    Lottie.useControls()
    </script>
</body>
</html>

⭐️ Show your support

If you appreciate the library, kindly demonstrate your support by giving it a star!
Star

License

This projet is licensed under the terms of MIT License

About

Lottie player element for zikojs

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published