Angular AnimationsWhat Does ngAnimate Do?The ngAnimate module adds and removes classes. The ngAnimate module does not animate your HTML elements. However, when ngAnimate notices certain events, such as hiding or showing an HTML element, the element receives some pre-defined classes that can be used to create animations. The directives in AngularJS that add/remove classes are:
The ng-show and ng-hide directives add or remove the ng-hide class value. Other directives add an ng-enter class value when entering the DOM and an ng-leave attribute when removed from the DOM. The ng-repeat directive also adds the ng-move class value when the HTML element changes position. In addition, the HTML element will have a set of class values during animation, which will be removed when the animation ends. For example, the ng-hide directive would concatenate these class values:
Animations Using CSSWe can use CSS transitions or CSS animations to animate HTML elements. This tutorial will show you both. CSS TransitionsCSS transitions allow you to change CSS property values smoothly, from one value to another, over a given duration: Example: When the DIV element gets the .ng-hide class, the transition will take 0.5 seconds, and the height will smoothly change from 100px to 0: CSS AnimationsCSS animations allow you to easily change CSS property values from one value to another over a given period of time: Example: When the DIV element receives the .ng-hide class, the myChange animation will run, which will simply change the height from 100px to 0: The main Angular modules for animations are @angular/animations and @angular/platform-browser. When you create a new project using the CLI, these dependencies are automatically added to your project. To get started with adding Angular animations to your project, import the animation-specific modules along with standard Angular functionality. Step 1: Enabling the animations moduleImport BrowserAnimationsModule, which introduces the animation capabilities into your Angular root application module. Note: When you use the CLI to create your app, the root application module app.module.ts is placed in the src/app folder.Step 2: Importing animation functions into component filesIf you plan to use specific animation functions in component files, import those functions from @angular/animations. src/app/app.component.ts Step 3: Adding the animation metadata propertyIn the component file, add a metadata property named animation: @Component() within the decorator. You place the trigger that defines an animation within the AnimationMetadata property. Animating a transitionLet's animate a transition that changes an HTML element from one state to another. For example, you can specify whether a button displays open or closed based on the user's last action. When the button is in the open state, it is visible and is yellow. When it is in the closed state, it is translucent and blue. In HTML, these attributes are set using common CSS styles such as color and opacity. In Angular, use the style() function to specify a set of CSS styles for use with animations. Collect a set of styles in the animation state, and give the state a name, such as open or closed. Let's create a new open-close component to animate with simple transitions. Run the following command in the terminal to generate the component: It will create the component at src/app/open-close.component.ts. Animation state and stylesUse Angular's position() function to define different states to be called at the end of each transition. This function takes two arguments: a unique name such as open or closed and a style() function. Use the style() function to define a set of styles to associate with a given state name. It would be best to use CamelCase for style attributes that contain dashes, such as background color, or wrap them in quotes, such as 'background color'. Let's see how Angular's state() function works with the style?¬ (?) function to set CSS style attributes. In this code snippet, multiple style attributes are set at the same time for the state. In the open state, the button has a height of 200 pixels, an opacity of 1, and a yellow background. src/app/open-close.component.ts In the following closed state, the button has a height of 100 pixels, an opacity of 0.8, and a background color of blue. Transitions and timingIn Angular, you can set multiple styles without any animation. However, without further refinement, the button turns on immediately with no fade, no shrinkage, or any other visible indicator that a change is taking place. In order to make the change less abrupt, you need to define an animation transition to specify the changes that occur between one state and another at some point in time. The transition() function accepts two arguments: the first argument accepts an expression that defines the direction between two transition states, and the second argument accepts one or a series of animate() steps. Use the animate() function to define length, delay, and smoothness, and specify the style function to define styles when transitions occur. Use the animate() function to define keyframes() for multi-stage animations. These definitions are placed in the second argument of the animate() function. Animation metadata: duration, delay, and easingThe animate () function (second argument of the transition function) accepts the timings and styles of input parameters. The timings parameter takes either a number or a string defined in three parts. The first part, the period, is essential. Duration can be expressed as a number in milliseconds without quotes or in seconds with quotes and as a time specifier. For example, the duration of a tenth of a second can be expressed as follows:
The second argument, delay, has the same syntax as duration. for example:
The third argument, easing, controls how the animation accelerates and slows down during its runtime. For example, easing causes the animation to start slowly and pick up speed as it progresses.
Note: See the Material Design website topic on Easing Curves for general information on natural easing curves.This example provides a state transition from open to closed with a 1-second transition between states. src/app/open-close.component.ts In the previous code snippet, the => operator indicates unidirectional transition, and <=> is bidirectional. Within the transition, animate() specifies how long the transition takes. In this case, the state change from open to closed takes 1 second, which is expressed here as 1s. This example adds a state transition from closed state to open state with a 0.5-second transition animation arc. src/app/open-close.component.ts Note: Some additional notes on using styles within the state and transition functions.
Include multiple state pairs within the same transition () argument: transition( 'on => off, off => void' ). Triggering the animationAnimation needs a trigger so that it knows when to start. The trigger() function collects states and transitions and gives the animation a name so that you can attach it to the triggering element in the HTML template. The trigger() function describes the name of the property to watch for changes. When a change occurs, the trigger initiates the actions included in its definition. These actions can be transitions or other actions, as we will see later. We'll name the trigger open-close in this example and attach it to the button element. The trigger describes the open and closed states and the timing of the two transitions. Note: Within each trigger() function call, an element can only be in one position at any time. However, multiple triggers can be activated simultaneously.Defining animations and attaching them to the HTML templateAnimations are defined in the component's metadata that controls the HTML element to be animated. Put the code that defines your animations under the animation:property @Component() within the decorator. src/app/open-close.component.ts When you have defined an animation trigger for a component, please attach it to an element in that component's template by wrapping the trigger name in parentheses and the @ sign next to it. Then, you can bind the trigger to a template expression using the standard Angular property binding syntax, as shown below, where triggerName is the name of the trigger, and the expression evaluates to a defined animation state. The animation is executed or triggered when the expression value changes to a new state. The following code snippet binds the trigger to the value of the isOpen property. src/app/open-close.component.html In this example, when the isOpen expression evaluates to a defined state of open or closed, it notifies the trigger of the state change to open-closed. Then it is up to the open-close code to handle the state change and initiate the state change animation. You can conditional animations for elements entering or leaving a page (inserted or removed from the DOM). For example, use *ngIf with animation triggers in HTML templates. Note: In the component file, set the trigger that defines the animation as the value of the animation:@Component() property in the decorator. In an HTML template file, use a trigger name to attach animations defined to the HTML element to be animated. Code reviewHere is the code files discussed in the transition example.
You learned to add animation to the transition between two states, using animate() as well as style() and state() for timing. Learn about more advanced features in Angular Animation under the Animations section, starting with advanced techniques in transitions and triggers. Animation API SummaryThe functional API provided by the @angular/animations module provides a domain-specific language (DSL) for creating and controlling animations in Angular applications. See the API reference for a complete list of the main functions and associated data structures and syntax details.
Next TopicAngularJS Interview Questions |