Skip to content

Latest commit

 

History

History
57 lines (51 loc) · 1.56 KB

README.md

File metadata and controls

57 lines (51 loc) · 1.56 KB

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