Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 2.85 KB

enter-animation.md

File metadata and controls

63 lines (45 loc) · 2.85 KB

Enter Animations

Utilities for creating enter animations.

Class Properties
animate-in animation-name: enter;
animation-duration: 150ms;
--tw-enter-opacity: initial;
--tw-enter-scale: initial;
--tw-enter-translate-x: initial;
--tw-enter-translate-y: initial;

Basic Usage

Adding enter animations

To give an element an enter animation, use the animate-in utility, in combination with some fade-in, spin-in, zoom-in, and slide-in-from utilities.

<button class="animate-in fade-in ...">Button A</button>
<button class="animate-in spin-in ...">Button B</button>
<button class="animate-in zoom-in ...">Button C</button>
<button class="animate-in slide-in-from-top ...">Button D</button>
<button class="animate-in slide-in-from-left ...">Button E</button>

Adding multiple enter animations

You can apply multiple enter animations at the same time as long as they apply to different properties.

<button class="animate-in fade-in zoom-in ...">Button A</button>
<button class="animate-in slide-in-from-top slide-in-from-left ...">
	Button B
</button>
<button
	class="animate-in fade-in zoom-in slide-in-from-top slide-in-from-left ..."
>
	Button C
</button>

Applying Conditionally

Hover, focus, and other states

Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:animate-in to only apply the animate-in utility on hover.

<div class="hover:animate-in ...">
	<!-- ... -->
</div>

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

Breakpoints and media queries

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:animate-in to apply the animate-in utility at only medium screen sizes and above.

<div class="md:animate-in ...">
	<!-- ... -->
</div>

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.