En este artículo, vamos a ver qué es un disparador en Angular 10 y cómo usarlo.
generar
Sintaxis:
animate(name | definations)
NgModule: el módulo utilizado por el disparador es:
- animaciones
Acercarse:
- Cree una aplicación angular que se utilizará.
- En app.module.ts, importe BrowserAnimationsModule.
- En app.component.html, cree un div que contenga el elemento de animación.
- En app.component.ts, importe el activador, el estado, el estilo, la transición y la animación que se utilizará.
- Haga que el activador contenga el estado y la transición para la animación.
- Sirva la aplicación angular usando ng serve para ver el resultado.
Parámetros:
- Nombre: Establece una string de identificación.
- definiciones: Establece un objeto de definición de animación.
Valor devuelto:
- Metadatos del disparador de animación:
Ejemplo:
app.module.ts
import { LOCALE_ID, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import {BrowserAnimationsModule} from '@angular/platform-browser/animations'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, AppRoutingModule, BrowserAnimationsModule ], providers: [ { provide: LOCALE_ID, useValue: 'en-GB' }, ], bootstrap: [AppComponent] }) export class AppModule { }
app.component.ts
import { // Trigger is imported here trigger, state, style, transition, animate } from '@angular/animations'; import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: [ './app.component.css' ], animations: [ // Trigger is used here trigger('geek',[ state('green', style({ 'background-color': 'green', transform: 'translateX(0)' })), state('blu', style({ 'background-color': '#49eb34', transform: 'translateX(0)' })), transition('green => blu',animate(1200)), transition('blu => green',animate(1000)) ]) ] }) export class AppComponent { state = 'green'; anim(){ this.state == 'green' ? this.state = 'blu' : this.state = 'green'; } }
app.component.html
<h1>GeeksforGeeks</h1> <button (click)='anim()'>Animate</button> <br> <br> <div style="width: 150px; height: 100px; border-radius: 5px;" [@geek]='state'> </div>
Producción:
Referencia: https://angular.io/api/animations/trigger