As frontend developers, we need to worry about the technical performance of our applications. Small UI details, such as the loading screen that we created in Chapter 8, Improving Backend Integrations: the Interceptor Pattern, improve our users’ perception of the application’s performance. One of these UI details is the transition between pages of our application. Instead of dry loading from one route to another, we can create an animation that smooths this transition, making the user experience more pleasant.
Until version 17 of Angular, it was possible to make this animation using the standard Angular Animation package that we used earlier in the book, in the toaster animation created in Chapter 8, Improving Backend Integrations: the Interceptor Pattern. The way to create this animation is specific to Angular and is not very simple for designers specializing in CSS.
As of version 17 of Angular, there is support for the View Transitions API, a specific web API for this use case that allows you to create transition animations using pure CSS. To use it in our project, we will change the app-routing.module.ts file:
@NgModule({
imports: [
RouterModule.forRoot(routes, {
bindToComponentInputs: true,
enableViewTransitions: true,
}),
],
exports: [RouterModule],
})
export class AppRoutingModule {}
We are configuring Angular so that the route mechanisms will use view transitions written in CSS with the enableViewTransitions property. With just this change, we can notice in our application that the transition between pages has a pleasant fade-in and fade-out animation. This default animation was created by the Angular team to make developers’ lives easier. But we can also customize this animation with a little CSS. In the styles.css file, we will create the following classes:
@keyframes slide-right {
from {
transform: translateX(40px);
}
}
@keyframes slide-left {
to {
transform: translateX(-40px);
}
}
@keyframes fade-in {
from {
opacity: 0;
}
}
@keyframes fade-out {
to {
opacity: 0;
}
}
For CSS animations, we need to define an initial and final state that we want the element to be in, in this case, the entire screen. For our example, we define a state where the screen goes to the right in the slide-right keyframe and goes to the left in the slide-left keyframe. Finally, we define the keyframes for the fade-in and fade-out effects.
Note that when we define the transition animation, we completely replace Angular’s default transition animation, so we are defining the fade-in and fade-out keyframes here.
To set up the animation, let’s add the following to the styles.css file:
::view-transition-old(root) {
animation: 100ms cubic-bezier(0.4, 0, 1, 1) both fade-out,
400ms cubic-bezier(0.4, 0, 0.2, 1) both slide-left;
}
::view-transition-new(root) {
animation: 250ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in,
400ms cubic-bezier(0.4, 0, 0.2, 1) both slide-right;
}
The View Transitions API creates pseudo-elements in the CSS where we define the exit animation of the old page (::view-transition-old) and the entrance animation of the new page (::view- transition-old). In this case, we define that the old screen will fade out and move to the left and the new page will fade in and slide in from the right.
Important note
The View Transitions API was created in 2023 and is being gradually adopted by browsers. Go to https://caniuse.com/ and check whether the browsers your users will use have support for this API.
In the next section, we will explore Angular Signals and how we can use it to simplify state control in our application.
No Responses