npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

tw-animate-css

v1.4.0

Published

TailwindCSS v4.0 compatible replacement for `tailwindcss-animate`.

Downloads

13,799,165

Readme

tw-animate-css

npm version npm downloads MIT license GitHub stars

A collection of Tailwind CSS v4.0 utilities for creating beautiful animations. Includes ready-to-use animations accordion-down, accordion-up and caret-blink, as well as a set of utilities for creating your own animations.


This package is a replacement for tailwindcss-animate. It embraces the new CSS-first architecture, providing a pure CSS solution for adding animation capabilities to your Tailwind CSS project without relying on the legacy JavaScript plugin system or having to define all keywords from scratch.

[!WARNING] The upcoming release v2.0.0 will include breaking changes. A migration script and a guide will be provided to help you transition smoothly.

Table of Contents

Getting Started

NPM

  1. Install the package with npm:

    npm install -D tw-animate-css
  2. Add the following line to your app.css or globals.css file:

    @import "tw-animate-css";
  3. Start using the animations!

    <!-- Add an animated fade and zoom entrance -->
    <div class="animate-in fade-in zoom-in">...</div>
    
    <!-- Add an animated slide to top-left exit -->
    <div class="animate-out slide-out-to-top slide-out-to-left">...</div>
    
    <!-- Control animation duration -->
    <div class="... duration-300">...</div>
    
    <!-- Control animation delay -->
    <div class="... delay-150">...</div>
    
    <!-- And so much more! -->

ℹ️ NOTE
The above guide works for esbuild, Vite and probably other bundlers too. If you are using a different bundler, the syntax may differ. Let me know how it works and I'll update the documentation.

Manual Download

  1. Download the tw-animate.css file from GitHub and place it next to your app.css or globals.css file.

  2. Add the following line to your app.css or globals.css file:

    @import "./tw-animate.css";
  3. Start using the animations!

    <!-- Add an animated fade and zoom entrance -->
    <div class="animate-in fade-in zoom-in">...</div>
    
    <!-- Add an animated slide to top-left exit -->
    <div class="animate-out slide-out-to-top slide-out-to-left">...</div>
    
    <!-- Control animation duration -->
    <div class="... duration-300">...</div>
    
    <!-- Control animation delay -->
    <div class="... delay-150">...</div>
    
    <!-- And so much more! -->

Usage

Enter/Exit Animations

To keep the README concise, I'll define a few variables:

  • <io>: Specify the type of animation. This can be in for enter or out for exit animations.
  • <dir>: Specify the direction of the slide. This can be in-from-top, in-from-bottom, in-from-left, in-from-right, in-from-start, in-from-end, out-to-top, out-to-bottom, out-to-left, out-to-right, out-to-start, or out-to-end.
  • *: Specify a value to apply. See list of possible values.

Base Classes

| Class | Description | | ------------------------- | ---------------------------------------------------------------------------------------------------------- | | animate-<io> | Base class for enter/exit animations. This needs to be applied in order for enter/exit animations to work. |

Parameter Classes

To customize the animation parameters, use the following classes:

| Class | Description | | --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | | duration-* | Sets animation-duration. Uses --tw-duration, see Tailwind CSS docs. Defaults to duration-150. | | ease-* | Sets animation-timing-function. Uses --tw-ease, see Tailwind CSS docs. Defaults to ease-[ease]. | | delay-* | Sets animation-delay. Possible values: Any <number>, initial, or any other [<value>]. | | repeat-* | Sets animation-iteration-count. Possible values: Any <number>, infinite, initial or any other [<value>]. | | direction-* | Sets animation-direction. Possible values: normal, reverse, alternate, alternate-reverse, initial or any other [<value>]. | | fill-mode-* | Sets animation-fill-mode. Possible values: none, forwards, backwards, both, initial or any other [<value>]. | | running | Sets animation-play-state to running. | | paused | Sets animation-play-state to paused. | | play-state-* | Sets animation-play-state. Possible values: initial or any other [<value>]. |

Transform Classes

| Class | Description | | ----------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | | blur-in-* | Applies a blur effect on the element when it enters. Possible values: blur-in, blur-in-<number>, blur-in-(<custom-property>), or blur-in-[<value>]. | | blur-out-* | Applies a blur effect on the element when it exits. Possible values: blur-out, blur-out-<number>, blur-out-(<custom-property>), or blur-out-[<value>]. | | fade-<io> | Fades the element in from or out to opacity: 0. | | fade-<io>-* | Fades the element in from or out to the specified value. Possible values: Any <number> (percentage) or any other [<value>]. | | zoom-<io> | Zooms the element in from or out to scale3D(0,0,0). | | zoom-<io>-* | Zooms the element in from or out to the specified value. Possible values: Any <number> (percentage) or any other [<value>]. | | spin-<io> | Spins the element in from or out to rotate(30deg). | | spin-<io>-* | Spins the element in from or out to the specified value. Possible values: Any <number> (degrees) or any other [<value>]. | | slide-<dir> | Slides the element in from or out to the specified direction (100%). | | slide-<dir>-* | Slides the element in from or out to the specified value. Possible values: Any <number> (percentage) or any other [<value>]. |

Ready-to-Use Animations

| Class | Description | | -------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | accordion-down | Accordion down animation. Requires --radix-accordion-content-height or one of the other accordion content height variables to be set to the content's height. | | accordion-up | Accordion up animation. Requires --radix-accordion-content-height or one of the other accordion content height variables to be set to the content's height. | | collapsible-down | Collapsible down animation. Requires --radix-collapsible-content-height or one of the other collapsible content height variables to be set to the content's height. | | collapsible-up | Collapsible up animation. Requires --radix-collapsible-content-height or one of the other collapsible content height variables to be set to the content's height. | | caret-blink | Blinking animation for caret/cursor. |

By the way, if you don't use some of the above animations, they will not be included in the final CSS file. This is because Tailwind CSS kind of does tree-shaking for you. So, if you don't use accordion-down, it won't be included in the final CSS file.

Examples

Basic usage:

<div class="animate-in fade-in slide-in-from-top-8 duration-500">
  Fade in from 0% opacity,<br />
  slide from top by 8 spacing units (2rem),<br />
  with a 500ms duration.
</div>

Advanced usage:

<div
  class="data-[state=show]:animate-in data-[state=hide]:animate-out fade-in slide-in-from-top-8 fade-out slide-out-to-top-8 duration-500"
  data-state="show"
>
  <p>
    If the element has the <code>data-state="show"</code> attribute,<br />
    fade in from 0% opacity,<br />
    slide from top by 8 spacing units (2rem),<br />
    with a 500ms duration.
  </p>
  <p>
    If the element has the <code>data-state="hide"</code> attribute,<br />
    fade out to 0% opacity,<br />
    slide to top by 8 spacing units (2rem),<br />
    with a 500ms duration.
  </p>
</div>

Notes on Compatibility

ℹ️ NOTE
I use only a small portion of the original plugin, so it might not be a 100% compatible drop-in replacement. If you notice any inconsistencies, feel free to contribute to this repository by opening a pull-request.