Animations
Overview#
Ionic Animations is a utility that allows developers to build complex animations in a platform agnostic manner. Developers do not need to be using a particular framework such as React or Angular, nor do they even need to be building an Ionic app. As long as developers have access to v5.0 or greater of Ionic Framework, they will have access to all of Ionic Animations.
Building efficient animations can be tricky. Developers are often limited by the libraries available to them as well as the hardware that their apps run on. On top of that, many animation libraries use a JavaScript-driven approach to running animations where they handle the calculation of your animation's values at every step in a requestAnimationFrame loop. This reduces the scalability of your animations as the library is constantly computing values and using up CPU time.
Ionic Animations uses the Web Animations API to build and run your animations. In doing this, we offload all work required to compute and run your animations to the browser. As a result, this allows the browser to make any optimizations it needs and ensures your animations run as smoothly as possible. While most browsers support a basic implementation of Web Animations, we fallback to CSS Animations for browsers that do not support Web Animations. The performance difference in switching between these two should typically be negligible.
Installation#
- JavaScript
- TypeScript
- Angular
- React
- Vue
Developers using Ionic Core and JavaScript should install the latest version of @ionic/core.
Developers using Ionic Core and TypeScript should install the latest version of @ionic/core.
Developers using Angular should install the latest version of @ionic/angular. Animations can be created via the AnimationController dependency injection.
Developers using React should install the latest version of @ionic/react. React wrappers are in beta. Please report any issues on GitHub!
Developers using Ionic Vue should install the latest version of @ionic/vue.
Basic Animations#
Usage#
- JavaScript
- Angular
- React
- Vue
In the example above, an animation that changes the opacity on the .square element and moves it from left to right along the X axis has been created. This animation will run an infinite number of times, and each iteration of the animation will last 1500ms.
By default, all Ionic Animations are paused until the play method is called.
Keyframe Animations#
Ionic Animations allows you to control the intermediate steps in an animation using keyframes. Any valid CSS property can be used here, and you can even use CSS Variables as values.
Hyphenated CSS properties should be written using camel case when writing keyframes. For example, border-radius should be written as borderRadius. This also applies to the fromTo(), from(), and to() methods.
Usage#
- JavaScript
- Angular
- React
- Vue
In the example above, the .square element will transition from a red background color, to a background color defined by the --background variable, and then transition on to a green background color.
Each keyframe object contains an offset property. offset is a value between 0 and 1 that defines the keyframe step. Offset values must go in ascending order and cannot repeat.
Grouped Animations#
Multiple elements can be animated at the same time and controlled via a single parent animation object. Child animations inherit properties such as duration, easing, and iterations unless otherwise specified. A parent animation's onFinish callback will not be called until all child animations have completed.
Usage#
- JavaScript
- Angular
- React
- Vue
This example shows 3 child animations controlled by a single parent animation. Animations squareA and squareB inherit the parent animation's duration of 2000ms, but animation squareC has a duration of 5000ms since it was explicitly set.
Before and After Hooks#
Ionic Animations provides hooks that let you alter an element before an animation runs and after an animation completes. These hooks can be used to perform DOM reads and writes as well as add or remove classes and inline styles.
Usage#
- JavaScript
- Angular
- React
- Vue
In this example, an inline opacity of 0.2 is set on the .square element prior to the animation starting. Once the animation finishes, the background color of the element is set to rgba(0, 255, 0, 0.5), and the inline opacity is cleared.
See Methods for a complete list of hooks.
Chained Animations#
Animations can be chained to run one after the other. The play method returns a Promise that resolves when the animation has completed.
Usage#
- JavaScript
- Angular
- React
- Vue
Gesture Animations#
Ionic Animations gives developers the ability to create powerful gesture-based animations by integrating seamlessly with Ionic Gestures.
Usage#
- JavaScript
- Angular
- React
- Vue
In this example we are creating a track along which we can drag the .square element. Our animation object will take care of moving the .square element either left or right, and our gesture object will instruct the animation object which direction to move in.
Preference-Based Animations#
Developers can also tailor their animations to user preferences such as prefers-reduced-motion and prefers-color-scheme using CSS Variables.
Usage#
- JavaScript
- Angular
- React
- Vue
This method works in all supported browsers when creating animations for the first time. Most browsers are also capable of dynamically updating keyframe animations as the CSS Variables change.
Safari does not currently support dynamically updating keyframe animations. For developers who need this kind of support in Safari, they can use MediaQueryList.addListener().
Overriding Ionic Component Animations#
Certain Ionic components allow developers to provide custom animations. All animations are provided as either properties on the component or are set via a global config.
Modals#
- JavaScript
- Angular
- React
- Vue
Performance Considerations#
CSS and Web Animations are usually handled on the compositor thread. This is different than the main thread where layout, painting, styling, and your JavaScript is executed. It is recommended that you prefer using properties that can be handled on the compositor thread for optimal animation performance.
Animating properties such as height and width cause additional layouts and paints which can cause jank and degrade animation performance. On the other hand, animating properties such as transform and opacity are highly optimizable by the browser and typically do not cause much jank.
For information on which CSS properties cause layouts or paints to occur, see CSS Triggers.
Debugging#
For debugging animations in Chrome, there is a great blog post about inspecting animations using the Chrome DevTools: https://developers.google.com/web/tools/chrome-devtools/inspect-styles/animations.
It is also recommended to assign unique identifiers to your animations. These identifiers will show up in the Animations inspector in Chrome and should make it easier to debug:
Browser Support#
| Browser/Platform | Supported Versions |
|---|---|
| Chrome | 43+ |
| Safari | 9+ |
| Firefox | 32+ |
| IE/Edge | 11+ |
| Opera | 30+ |
| iOS | 9+ |
| Android | 5+ |
Due to a bug in Safari versions 9-11, stepping through animations via
progressStepis not supported. This is supported on Safari 12+.
Types#
| Name | Value |
|---|---|
AnimationDirection | 'normal' \| 'reverse' \| 'alternate' \| 'alternate-reverse' |
AnimationFill | 'auto' \| 'none' \| 'forwards' \| 'backwards' \| 'both' |
Interfaces#
Properties#
| Name | Description |
|---|---|
childAnimations: Animation[] | All child animations of a given parent animation. |
elements: HTMLElement[] | All elements attached to an animation. |
parentAnimation?: Animation | The parent animation of a given animation object. |
Methods#
| Name | Description |
|---|---|
addAnimation(animationToAdd: Animation \| Animation[]): Animation | Group one or more animations together to be controlled by a parent animation. |
addElement(el: Element \| Element[] \| Node \| Node[] \| NodeList): Animation | Add one or more elements to the animation. |
afterAddClass(className: string \| string[]): Animation | Add a class or array of classes to be added to all elements in an animation after the animation ends. |
afterAddRead(readFn: (): void): Animation | Add a function that performs a DOM read to be run after the animation ends. |
afterAddWrite(writeFn: (): void): Animation | Add a function that performs a DOM write to be run after the animation ends. |
afterClearStyles(propertyNames: string[]): Animation | Add an array of property names to be cleared from the inline styles on all elements in an animation after the animation ends. |
afterRemoveClass(className: string \| string[]): Animation | Add a class or an array of classes to be removed from all elements in an animation after the animation ends. |
afterStyles(styles: { [property: string]: any }): Animation | Add an object of styles to be applied to all elements in an animation after the animation ends. |
beforeAddClass(className: string \| string[]): Animation | Add a class or array of classes to be added to all elements in an animation before the animation starts. |
beforeAddRead(readFn: (): void): Animation | Add a function that performs a DOM read to be run before the animation starts. |
beforeAddWrite(writeFn: (): void): Animation | Add a function that performs a DOM write to be run before the animation starts. |
beforeClearStyles(propertyNames: string[]): Animation | Add an array of property names to be cleared from the inline styles on all elements in an animation before the animation starts. |
beforeRemoveClass(className: string \| string[]): Animation | Add a class or an array of classes to be removed from all elements in an animation before the animation starts. |
beforeStyles(styles: { [property: string]: any }): Animation | Add an object of styles to be applied to all elements in an animation before the animation starts. |
direction(direction?: AnimationDirection): Animation | Set the direction the animation should play in. |
delay(delay?: number): Animation | Set the delay for the start of the animation in milliseconds. |
destroy(clearStyleSheets?: boolean): Animation | Destroy the animation and clear all elements, child animations, and keyframes. |
duration(duration?: number): Animation | Set the duration of the animation in milliseconds. |
easing(easing?: string): Animation | Set the easing of the animation in milliseconds. See Easing Effects for a list of accepted easing values. |
from(property: string, value: any): Animation | Set the start styles of the animation. |
fromTo(property: string, fromValue: any, toValue: any): Animation | Set the start and end styles of the animation. |
fill(fill?: AnimationFill): Animation | Set how the animation applies styles to its elements before and after the animation's execution. |
iterations(iterations: number): Animation | Set the number of times the animation cycle should be played before stopping. |
keyframes(keyframes: any[]): Animation | Set the keyframes for an animation. |
onFinish(callback: (didComplete: boolean, animation: Animation): void, opts?: AnimationCallbackOptions): Animation | Add a callback to be run upon the animation ending. |
pause(): Animation | Pause the animation. |
play(opts?: AnimationPlayOptions): Promise<void> | Play the animation. |
progressEnd(playTo?: 0 \| 1, step: number, dur?: number): Animation | Stop seeking through an animation. |
progressStart(forceLinearEasing: boolean, step?: number): Animation | Begin seeking through an animation. |
progressStep(step: number): Animation | Seek through an animation. |
stop(): Animation | Stop the animation and reset all elements to their initial state. |
to(property: string, value: any): Animation | Set the end styles of the animation. |