我订阅了Firebase实时数据库,这样当我向它提交内容时,它会立即在视图中呈现,而不需要jQuery或ajax。
我想为这些元素的渲染设置动画,这样当一个新元素添加到DOM时,div
的{{1}}为绿色并慢慢消失。我不想要的是这个类的所有background-color
都在加载时执行这个动画。
我知道如何做前者:
div
但是当然这个动画会在渲染时发生,包括加载时。
我对“Angular 2 way”感兴趣。
答案 0 :(得分:6)
从Angular 4.25开始,有一种更简单的方法:如果你想抑制:在视图初始化时输入动画,只需用下面的动画包装它:
template: `
<div [@preventInitialChildAnimations]>
<div [@someAnimation]>...</div>
</div>
`,
animations: [
trigger('preventInitialChildAnimations', [
transition(':enter', [
query(':enter', [], {optional: true})
])
]),
...
]
答案 1 :(得分:3)
添加一个触发器,用于在项目通过网络时检查项目的状态。这里我在itemState
为new
时触发动画。
trigger('itemState', [
transition('* => new', animate(5000, keyframes([
style({ backgroundColor: 'red', offset: 0 }),
style({ backgroundColor: '*', offset: 1.0 })
]))),
为您的触发器提供对项目状态的引用,并在动画结束时将其设置为null。
<div [@itemState]="someItem.itemState" (@itemState.done)="someItem.itemState=''">
请务必在帖子中添加itemState
属性,以便将其标记为新内容!
答案 2 :(得分:2)
您可以使用生命周期钩子AfterViewInit在初始视图渲染完成后激活动画。
https://embed.plnkr.co/5l1kf5lMLEXSE8pNzqik/
@Component({
selector: 'my-app',
template: `
<div *ngFor="let item of items" [@greenFade]="animate ? 'in' : null">
{{item}}
</div>
<button (click)="addItem()">add</button>
`,
animations: [
trigger('greenFade', [
transition('void => in', [style({background: 'rgb(173, 235, 173)'}), animate('5s ease-in')])
])
]
})
class App implements AfterViewInit {
constructor(private cdRef: ChangeDetectorRef){}
items: String = ['Item','Item','Item'];
addItem(){
this.items.push('Item');
}
animate: boolean;
ngAfterViewInit(){
this.animate = true;
this.cdRef.detectChanges();
}
}
答案 3 :(得分:0)
最简单的解决方案:
@Component({
selector: 'myComponent',
template: '<div [@.disabled]="disableAnimations" [@someAnimation]="someValue">',
animations: [trigger('someAnimation', [transition('* => *', [style({ transform: 'scale(1.1)' }), animate(250)])])]
})
export class MyComponent implements AfterViewInit {
disableAnimations: boolean = true;
constructor() {}
ngAfterViewInit(): void {
this.disableAnimations = false;
}
}
参考: https://angular.io/api/animations/trigger (滚动到“禁用动画”)