
- Angular Tutorial
- Angular - Home
- Angular - Overview
- Angular - Features
- Angular - Advantages & Disadvantages
- Angular Basics
- Angular - Environment setup
- Angular - First Application
- Angular - MVC Architecture
- Angular Components
- Angular - Components
- Angular - Component Lifecycle
- Angular - View Encapsulation
- Angular - Component Interaction
- Angular - Component Styles
- Angular - Nested Components
- Angular - Content projection
- Angular - Dynamic components
- Angular - Elements
- Angular Templates
- Angular - Templates
- Angular - Template statements
- Angular - Template Variables
- Angular - SVG as Templates
- Angular Binding
- Angular - Data Binding
- Angular - Interpolation
- Angular - Event Binding
- Angular - Property Binding
- Angular - Attribute Binding
- Angular - Class Binding
- Angular - Style Binding
- Angular - Two-way Binding
- Angular Directives
- Angular - Directives
- Angular - Attribute Directives
- Angular - Structural Directives
- Angular - Custom Directives
- Angular Pipes
- Angular - Pipes
- Angular - Built-in Pipes
- Angular - Custom Pipes
- Angular Forms
- Angular - Forms
- Angular - Template Driven Forms
- Angular - Reactive Forms
- Angular - Form Validation
- Angular - Dynamic Forms
- Angular Dependency Injection
- Angular - Dependency Injection
- Angular - Injectable Service
- Angular Routing
- Angular - Routing
- Angular - Navigation
- Angular - Routing in SPA
- Angular - Custom Route Matches
- Angular - Router Reference
- Angular HTTP Client programming
- Angular - Services
- Angular - HTTP Client
- Angular - Request
- Angular - Response
- Angular - GET
- Angular - POST
- Angular - PUT
- Angular - DELETE
- Angular - JSONP
- Angular - CRUD Operations Using HTTP
- Angular Modules
- Angular - Introduction to Modules
- Angular - Root Module
- Angular - Feature Module
- Angular - Shared Module
- Angular - Routing Module
- Angular - NgModules
- Angular Animation
- Angular - Animations
- Angular Service Workers & PWA
- Angular - Service Workers & PWA
- Angular Testing
- Angular - Testing Overview
- Angular Design Patterns
- Angular - Design Patterns
- Angular - Lazy Loading
- Angular - Singleton Pattern
- Angular - Observer Pattern
- Angular Libraries
- Angular - Libraries
- Angular - Angular Material
- Angular - PrimeNG
- Angular - RxJS
- Angular Advanced
- Angular - Signals
- Angular - Authentication & Authorization
- Angular - Internationalization
- Angular - Accessibility
- Angular - Web Workers
- Angular - Server Side Rendering
- Angular - Ivy Compiler
- Angular - Building with Bazel
- Angular - Backward Compatibility
- Angular - Reactive Programming
- Angular Tools
- Angular - CLI
- Angular Material UI Elements
- Angular - Paginator
- Angular - Datepicker
- Angular - Select Drop-down
- Angular Miscellaneous
- Angular - Adding Bootstrap
- Angular - Flex Layout
- Angular - Third Party Controls
- Angular - Configuration
- Angular - Displaying Data
- Angular - Displaying JSON Data
- Angular - Decorators & Metadata
- Angular - Basic Example
- Angular - Error Handling
- Angular - Testing & Building a Project
- Angular - Lifecycle Hooks
- Angular - User Input
- Angular - What's New?
- Angular Useful Resources
- Angular - Quick Guide
- Angular - Useful Resources
- Angular - Discussion
Angular - Animations
The term Animation can be defined as the transformation of HTML element from one CSS style to another over a specific period of time. It provides ability to add visual effects and transitions to your web applications. You can apply animation to almost all CSS properties.
The primary focus of designing a web application is to keep users engaged or grab their attention until they perform desired actions. Sure, the application needs to provide valuable information and help the visitors in their task, but visual appearance plays an important role, too. This visual effect is created using animation.
In this tutorial, we are going to learn how we can add animation to an Angular application.
Importance of Animation in Angular Application
Be it an Angular application or any web app, animations are used for several reasons −
- Adding animations can make your application feel more attractive and eye catching.
- It gives feedback to users on their actions. For example, showing a button click animation indicates that something has been triggered.
- Animations make the app look more modern and engaging, which can improve user retention and engagement.
- Animating an item when it appears or when it's selected can draw attention to important elements.
- Without animations, transitions between different CSS styles in your app might feel abrupt. Animations make these transitions smoother.
How Animation Works in Angular?
In Angular, we need to learn the following five core concepts and their relationship to completely understand the workings of animation −
State
State refers to the specific state of the component. A component can have multiple defined states. It is created using state() method. It has two arguments as shown below −
name: Unique name of the state.
style: Style of the state defined using style() method.
animations: [ ... state('start', style( { width: 200px; } )) ... ]
Here, start is the name of the state.
Style
Style refers to the CSS style applied in a particular state. The style() method is used to style the particular state of a component. It uses the CSS property and can have multiple items.
animations: [ ... state('start', style( { width: 200px; opacity: 1 } )) ... ]
Here, start state defines two CSS properties, width with value 200px and opacity with value 1.
Transition
Transition means the change of state from one state to another. Animation can have multiple transitions. Each transition is defined using transition() function. This function takes two argument −
Direction Expression between two transition state.
Details of animation using animate() function.
animations: [ ... transition('start => end', [ animate('1s') ]) ... ]
Here, transition() function defines the transition from start state to end state with animation defined in animate() method.
Animation
Animation defines the way the transition from one state to another take place. The animation() function is used to set the animation details. The animate() takes a single argument in the form of below expression −
duration delay easing
duration: refers the duration of the transition. It is expressed as 1s, 100ms, etc.,
delay: It is the delay time to start the transition. It is expressed similarly to duration.
easing: It specifies how to accelerate/decelerate the transition in the given time duration.
Trigger
Every animation needs a trigger to start the animation. The trigger() method is used to set all the animation information such as state, style, transition and animation, in one place and give it a unique name. The unique name is used further to trigger the animation.
animations: [ trigger('enlarge', [ state('start', style({ height: '200px', })), state('end', style({ height: '500px', })), transition('start => end', [ animate('1s') ]), transition('end => start', [ animate('0.5s') ]) ]), ]
Here, enlarge is the unique name given to the particular animation. It has two state and related styles. It has two transitions, one from start to end and another from end to start. End to start state, do the reverse of the animation.
Trigger can be attached to an element as specified below −
<div [@triggerName]="expression">...</div>;
For example,
<img [@enlarge]="isEnlarge ? 'end' : 'start'">...</img>;
Here,
@enlarge: trigger is set to image tag and attached to an expression.
If isEnlarge value is changed to true, then end state will be set and it triggers start => end transition.
If isEnlarge value is changed to false, then start state will be set and it triggers end => start transition.
Implementing Animation in Angular
To implement animations in Angular, you need to follow these steps:
Here, we set up a <div> element that changes its background color based on hover state using Angular animations.
Step 1: Create an Angular application with a suitable name. We are naming it animation-app.
ng new animation-app
Step 2: Install the @angular/animations module to your project by running the following command −
npm install @angular/animations
It is optional step.
Step 3: Import the BrowserAnimationsModule and provideAnimationsAsync() in the main.ts file as shown in the following code −
import { bootstrapApplication } from '@angular/platform-browser'; import { AppComponent } from './app/app.component'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { provideAnimationsAsync } from '@angular/platform-browser/animations/async'; bootstrapApplication(AppComponent, { providers: [ BrowserAnimationsModule, provideAnimationsAsync(), ] })
Step 4: Import the trigger, transition, style, animate, state and add the animation inside app.component.ts file −
import { Component } from '@angular/core'; import { RouterOutlet } from '@angular/router'; import { trigger, transition, style, animate, state } from '@angular/animations'; @Component({ selector: 'app-root', standalone: true, imports: [RouterOutlet], templateUrl: './app.component.html', styleUrl: './app.component.css', animations: [ trigger('backgroundColorChange', [ state( 'default', style({ backgroundColor: 'rgb(174, 5, 174)', }) ), state( 'hovered', style({ backgroundColor: 'rgb(248, 174, 225)', }) ), transition('default <=> hovered', [animate('0.5s ease-in-out')]), ]), ], }) export class AppComponent { title = 'Animation Example'; isHovered = false; }
In the above code, trigger() function specify an animation, and state(), style(), animate(), and transition() define what happens during the animation.
Step 5: Apply the [@backgroundColorChange] binding to the div element inside app.component.ts file −
<div [@backgroundColorChange]="isHovered ? 'hovered' : 'default'" (mouseenter)="isHovered = true" (mouseleave)="isHovered = false" class="animated-box"> </div>
The @backgroundColorChange binding applies an animation trigger to the div, which transitions between the hovered and default states based on the isHovered property. The mouseenter and mouseleave event bindings update the isHovered property to TRUE or FALSE when the mouse enters or leaves the div, respectively.
Step 6: Open the CSS file and apply the following style −
.animated-box { margin-top: 20px; width: 250px; height: 250px; text-align: center; line-height: 250px; color: white; font-weight: bold; transition: background-color 1s ease; }
Step 7: Run the application using ng serve command to get the output.

Angular Animation API Methods
The @angular/animations module provides the following methods −
SNo. | Methods & Descriptions |
---|---|
1. |
trigger() This is the main function from where an animation starts. It contains all the animation function calls. Its first argument is used to declare the trigger name, and the second one is an array of different animation functions. The trigger name is a unique identifier bound to the Template and the animation functions define the behavior of animations. |
2. |
state() It is used to create a named set of CSS styles. These styles are applied on successful transition to a given state. The state name can be used within other animation functions. |
3. |
style() Specifies the CSS styles that will be applied during the animation. |
4. |
animate() It is used to set the animation duration and easing function for a transition. |
5. |
transition() Defines how to move between different states. |
6. |
keyframes() This function is used to define a series of styles for an element over time. It is used within animate() function. |
7. |
group() Using this function, you can run a group of animation steps in parallel. It is used within sequence() and transition() functions. |
8. |
animateChild() When you want animations to be run within the same timeframe on child component and parent component both, use the animateChild() function. |
9. |
useAnimation() It is used to start a reusable animation. |
10. |
animation() It is used to create a reusable animation. |
11. |
stagger() It delays the start time of animations for multiple elements so that they begin one after another instead of all at the same time. |
12. |
sequence() This function is used for creating a list of animation steps that play one after the other, in order. |
13. |
query() It finds inner HTML elements lies within the current element. |