Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 3, 2024 via pnpm

animate.css 4.1.1

[![GitHub Version](https://img.shields.io/github/release/daneden/animate.css.svg?style=for-the-badge)](https://github.com/daneden/animate.css) [![Github Star](https://img.shields.io/github/stars/daneden/animate.css.svg?style=for-the-badge)](https://github
Package summary
Share
0
issues
1
license
1
MIT
Package created
3 Jun 2014
Version published
7 Sep 2020
Maintainers
2
Total deps
1
Direct deps
0
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
animate.css@4.1.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

0
All Dependencies CSV
ⓘ This is a list of animate.css 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities

Visualizations

Frequently Asked Questions

What does animate.css do?

Animate.css is a library that adds easy-to-use, customizable CSS animations to your projects. It provides a wide range of animations and transitions, making it an ideal solution for enhancing the user interface and user experience of websites and web applications. The utility of animate.css can range from simple micro-interactions on buttons and links to advanced motion design.

How do you use animate.css?

Using animate.css is fairly straightforward. First, it has to be installed in the project with either npm or yarn, using one of the following commands:

npm install animate.css --save
# or
yarn add animate.css

After installation, it can be imported to the project using standard CSS import in your stylesheet:

@import 'animate.css';

Or by including it in your HTML file:

<head>
  <link rel="stylesheet" href="animate.min.css">
</head>

To use animations included in the library, simply add classes to the elements you want to animate. The first class should be animate__animated (which starts the animation) and the second class should be the name of chosen animation animate__bounce, animate__flash, etc:

<h1 class="animate__animated animate__bounce">An animated element</h1>

Note: Class names are based on camelCase naming convention, and the list of animations can be categorized e.g., fades, bounces, etc.

Where are the animate.css docs?

The complete animate.css documentation can be found on the official website, offering comprehensive guides and examples on how to make the most of the library. More technical details including contribution guidelines and the project’s Code of Conduct are provided in the readme file of the repository, reachable at git+https://github.com/animate-css/animate.css.git.