@prodkt/animations
TypeScript icon, indicating that this package has built-in type declarations

1.3.0 • Public • Published

Tovuti Animations

Your favorite animate.css effects available as ES modules for use with the Web Animations API.

  • 🏆 ~100 quality animations
  • 🎾 ~30 popular easings
  • 🚚 Works with CDNs
  • 🌲 Fully tree-shakeable

This module was built for Tovuti, but it works well as a stand-alone library too!

Installation

npm install @prodkt/animations

Usage

Importing all animations:

import * as animations from '@prodkt/animations';

Importing individual animations:

import { bounce } from '@prodkt/animations';

Importing easings:

import { easings } from '@prodkt/animations';

Animating an element:

<div style="display: block; width: 100px; height: 100px; background: tomato; margin: 2rem;"></div>

<script type="module">
  import { easings, flip } from 'https://cdn.jsdelivr.net/npm/@prodkt/animations@1/dist/index.js';

  const box = document.querySelector('div');

  box.animate(flip, {
    duration: 1500,
    iterations: Infinity,
    easing: easings.easeInSine
  });
</script>

This example uses the jsDelivr CDN. To import the library locally, install it and make node_modules/@prodkt/animations/dist available to your app or bundler.

Developers

This script parses all animation stylesheets found in node_modules/animate.css and generates keyframe objects that you can use with the Web Animations API. As animations are tweaked and added to animate.css, the keyframes herein will be kept in sync when rerunning the script.

To build the project, run:

npm run build

This will purge and rebuild the dist directory.

Package Sidebar

Install

npm i @prodkt/animations

Weekly Downloads

2

Version

1.3.0

License

MIT

Unpacked Size

39.2 kB

Total Files

105

Last publish

Collaborators

  • bryanfunk