gpt4 book ai didi

css - 在 Angular 4 中动画化图像交换(在 AngularJS 中是 ng-animate-swap)

转载 作者:太空狗 更新时间:2023-10-29 18:15:30 26 4
gpt4 key购买 nike

我想在 Angular 4 应用程序中制作图像交换动画。当 Controller 替换 img src 属性时,旧图像应该消失,新图像出现。

在 AngularJS 中,这可以通过使用 ng-animate-swap 更改不透明度来实现。但是,Angular 4 似乎不支持动画交换。如果没有交换触发器,如何实现这一点?

我已经尝试为 src 属性添加从 void 到 * 和返回的转换,但这没有按预期工作。第一张图片有动画,后面的交换没有动画。

@Component({
selector: 'app-play-card',
template: '<div (click)="loadImg()"><img [@fade]="imgsrc" src="{{ imgsrc }}" /></div>',
styleUrls: ['./play-card.component.css'],
animations: [
trigger('fade', [
transition('void => *', [
style({opacity: 0.1}),
animate(5000, style({opacity: 1}))
]),
transition('* => void', [
style({opacity: 0.9}),
animate(5000, style({opacity: 0}))
])
])
]
})

最佳答案

下面是我如何使用 Angular 动画状态:

animations.ts

import { trigger, style, animate, transition, state } from '@angular/animations';

export const fade = [
trigger('fade', [
state('in', style({ 'opacity': '1' })),
state('out', style({ 'opacity': '0' })),
transition('* <=> *', [
animate(1000)
])
])
];

app.component.html

<img [@fade]="state" (@fade.done)="onDone($event)" [src]="imageSource" width="500" (click)="onClick()" />

我使用了 (@fade.done),这是 Angular 动画的一个特性,它允许您在动画完成后调用一个方法。

在这里,当第一个动画淡出到不透明度为 0 时,我更改了图像路径,并更改了动画状态,再次淡入淡出并将不透明度值恢复为 1。

app.component.ts

export class AppComponent implements OnInit {
choice = 2;
state = 'in';
counter = 0;
enableAnimation = false;
imageSource = '';
imgSrc1 = 'firstPath';
imgSrc2 = 'secondPath';

ngOnInit() {
this.imageSource = this.imgSrc1;
}

onClick() {
this.enableAnimation = true;
this.counter = 0;
this.toggleState();
}

toggleImg() {
if (this.choice === 1) {
this.imageSource = this.imgSrc1;
this.choice = 2;
} else {
this.imageSource = this.imgSrc2;
this.choice = 1;
}
}

onDone($event) {
if (this.enableAnimation) {
if (this.counter === 1) {
this.toggleImg();
}
this.toggleState();
}
}

toggleState() {
if (this.counter < 2) {
this.state = this.state === 'in' ? 'out' : 'in';
this.counter++;
}
}
}

虽然对于一个小动画来说,这显然是很多代码。

这是我为此制作的 StackBlitz 示例:https://stackblitz.com/edit/angular-anim-fade-img

关于css - 在 Angular 4 中动画化图像交换(在 AngularJS 中是 ng-animate-swap),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47538186/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com