要重新启动动画,您可以使用Angular的AnimationBuilder和AnimationPlayer来创建和控制动画。
首先,确保您已经安装了Angular动画模块。可以使用以下命令进行安装:
npm install @angular/animations --save
接下来,导入所需的模块和服务:
import { Component, OnInit, ViewChild, ElementRef } from '@angular/core';
import { AnimationBuilder, AnimationPlayer, style, animate } from '@angular/animations';
在组件类中,使用ViewChild装饰器获取对动画元素的引用:
@Component({
selector: 'app-your-component',
templateUrl: './your-component.component.html',
styleUrls: ['./your-component.component.css']
})
export class YourComponent implements OnInit {
@ViewChild('animatedElement') animatedElement: ElementRef;
player: AnimationPlayer;
constructor(private animationBuilder: AnimationBuilder) { }
ngOnInit(): void {
}
startAnimation(): void {
if (this.player) {
// 如果动画正在播放,则重置它
this.player.destroy();
}
const factory = this.animationBuilder.build([
style({ opacity: 0 }),
animate('1s', style({ opacity: 1 }))
]);
this.player = factory.create(this.animatedElement.nativeElement);
this.player.play();
}
}
在模板中,将动画应用于希望触发动画的元素:
动画元素
在上述代码中,我们使用AnimationBuilder构建了一个简单的透明度动画。在startAnimation方法中,我们首先检查动画是否正在播放。如果是,则销毁现有的动画播放器。然后,我们使用AnimationBuilder构建动画,设置初始样式为{ opacity: 0 },动画时间为1秒,并将最终样式设置为{ opacity: 1 }。最后,我们使用动画播放器的create方法将动画应用于animatedElement元素,并调用play方法以启动动画。
这样,每次点击“触发动画”按钮时,动画都会重新启动。