当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Angular10 Animation animate()用法及代码示例


在本文中,我们将了解 Angular 10 中的动画以及如何使用它。

这个动画在 Angular10 中用于 d定义一个动画步骤,结合样式信息和时间信息

用法:

animate(timings | styles)

NgModule:animate 使用的模块是:

  • animations

方法:



  • 创建要使用的 angular 应用程序
  • 在 app.module.ts 中导入 BrowserAnimationsModule
  • 在 app.component.html 中创建一个包含动画元素的 div。
  • 在 app.component.ts 中导入要使用的触发器、状态、样式、过渡、动画。
  • 使用包含时间和样式的 animation() 制作动画。
  • 使用 ng serve 为 angular 应用程序提供服务以查看输出

参数:

  • timing:为父动画设置 AnimateTimings
  • styles:为父动画设置 AnimationStyles

返回值:

  • AnimationAnimateMetadata:一个封装动画步骤的对象

范例1:

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, 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('gfg',[
      state('normal', style({
        'background-color':'red',
        transform:'translateX(0)'
      })),
      state('highlighted', style({
        'background-color':'blue',
        transform:'translateX(0)'
      })),
      transition('normal => highlighted',animate(1200)),
      transition('highlighted => normal',animate(1000))
    ])
  ]
})
export class AppComponent  {
  state = 'normal';
  anim(){
    this.state == 'normal' ? 
    this.state = 'highlighted' :this.state = 'normal';
  }
}

应用程序组件.html


<h1>GeeksforGeeks</h1>
<button (click)='anim()'>Animate</button>
<div 
  style="width:100px; height:100px"
  [@gfg]='state'>
</div>

输出:

参考:https://angular.io/api/animations/animate




相关用法


注:本文由纯净天空筛选整理自taran910大神的英文原创作品 Angular10 Animation animate() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。