角度2 ngIf和CSS过渡/动画


121

我希望div使用CSS从右角2滑入。

  <div class="note" [ngClass]="{'transition':show}" *ngIf="show">
    <p> Notes</p>
  </div>
  <button class="btn btn-default" (click)="toggle(show)">Toggle</button>

如果我仅使用[ngClass]来切换类并利用不透明性,则可以正常工作。但是li不想从一开始就渲染该元素,因此我先用ngIf“隐藏”了它,但是之后过渡就无法正常工作。

.transition{
  -webkit-transition: opacity 1000ms ease-in-out,margin-left 500ms ease-in-out;
  -moz-transition: opacity 1000ms ease-in-out,margin-left 500ms ease-in-out;
  -ms-transition: opacity 1000ms ease-in-out,margin-left 500ms ease-in-out ;
  -o-transition: opacity 1000ms ease-in-out,margin-left 500ms ease-in-out;
  transition: opacity 1000ms ease-in-out,margin-left 500ms ease-in-out;
  margin-left: 1500px;
  width: 200px;
  opacity: 0;
}

.transition{
  opacity: 100;
  margin-left: 0;
}

Answers:


195

更新4.1.0

柱塞

另请参见https://github.com/angular/angular/blob/master/CHANGELOG.md#400-rc1-2017-02-24

更新2.1.0

柱塞

有关更多详细信息,请参见angular.io的动画。

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

@Component({
  selector: 'my-app',
  animations: [
    trigger(
      'enterAnimation', [
        transition(':enter', [
          style({transform: 'translateX(100%)', opacity: 0}),
          animate('500ms', style({transform: 'translateX(0)', opacity: 1}))
        ]),
        transition(':leave', [
          style({transform: 'translateX(0)', opacity: 1}),
          animate('500ms', style({transform: 'translateX(100%)', opacity: 0}))
        ])
      ]
    )
  ],
  template: `
    <button (click)="show = !show">toggle show ({{show}})</button>

    <div *ngIf="show" [@enterAnimation]>xxx</div>
  `
})
export class App {
  show:boolean = false;
}

原版的

*ngIf当表达式变为时,从DOM中删除元素false。您不能在不存在的元素上进行过渡。

改为使用hidden

<div class="note" [ngClass]="{'transition':show}" [hidden]="!show">

2
是的,隐藏仅使其不可见,但该元素仍然存在。*ngIf将其完全从DOM中删除。
君特Zöchbauer

1
就像display:none。没有display:hiddenAFAIK。
君特Zöchbauer

1
@GünterZöchbauer是的,不透明性是硬件加速的,因此更适合。
drindri Domi

1
没关系。不透明度不会删除该元素,仍然会覆盖其下的元素,我建议使用scale(0),这会影响UI,例如display:none;。但过渡很好。要回答OP,他可以在无效状态下使用带有transform:scale(0)的角度动画angular.io/docs/ts/latest/guide/animations.html
drindri Domi

1
现在应该从@ angular / animations中包含触发器,样式,动画和过渡项目。因此导入{ trigger, style, animate, transition } from '@angular/animations';
Joel Hernandez

137

根据最新的angular 2文档, 您可以为“进入和离开”元素设置动画(类似于angular 1)。

简单淡入淡出动画的示例:

在相关的@Component中添加:

animations: [
  trigger('fadeInOut', [
    transition(':enter', [   // :enter is alias to 'void => *'
      style({opacity:0}),
      animate(500, style({opacity:1})) 
    ]),
    transition(':leave', [   // :leave is alias to '* => void'
      animate(500, style({opacity:0})) 
    ])
  ])
]

不要忘记添加导入

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

相关组件的html元素应如下所示:

<div *ngIf="toggle" [@fadeInOut]>element</div>

在此处构建了幻灯片动画的 示例。

说明在“无效”和“*”:

  • voidngIf设置为false 时的状态(当元素未附加到视图时适用)。
  • *-可以有许多动画状态(在文档中了解更多)。该*状态优先于所有这些状态,以“通配符”表示(在我的示例中,这ngIf是设置为的状态true)。

注意(摘自Angular文档):

在app模块内额外声明, import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

角动画建立在标准Web动画API的基础上,并在支持它的浏览器中本地运行。对于其他浏览器,需要使用polyfill。从GitHub抓取web-animations.min.js并将其添加到您的页面。


2
需要导入BrowserAnimationsModule以使用角度动画。如果我没看错的话,动画模块是在angular 2的核心模块中找到的,然后再移至其自己的模块,因此为什么您会找到许多没有导入的插件示例。这是带有导入内容的更新的plnkr:链接
snaplemouton

1
使用这种方法时,leave不会进行动画处理,因为在此*ngIf之前已从DOM中删除了组件。
Slava Fomin II

4
这应该是公认的答案,它实际上为想要使用ngIf而不是其他解决方法的人提供了解决方案。
Ovi Trif

17
    trigger('slideIn', [
      state('*', style({ 'overflow-y': 'hidden' })),
      state('void', style({ 'overflow-y': 'hidden' })),
      transition('* => void', [
        style({ height: '*' }),
        animate(250, style({ height: 0 }))
      ]),
      transition('void => *', [
        style({ height: '0' }),
        animate(250, style({ height: '*' }))
      ])
    ])

11

适用于现代浏览器的仅CSS解决方案

@keyframes slidein {
    0%   {margin-left:1500px;}
    100% {margin-left:0px;}
}
.note {
    animation-name: slidein;
    animation-duration: .9s;
    display: block;
}

输入纯CSS过渡的好选择。将此用作从ng-enter类用法迁移的临时解决方案。
edmundo096

4

一种方法是对ngIf属性使用setter并将状态设置为更新值的一部分。

StackBlitz示例

淡入淡出组件

 import {
    animate,
    AnimationEvent,
    state,
    style,
    transition,
    trigger
  } from '@angular/animations';
  import { ChangeDetectionStrategy, Component, Input } from '@angular/core';

  export type FadeState = 'visible' | 'hidden';

  @Component({
    selector: 'app-fade',
    templateUrl: './fade.component.html',
    styleUrls: ['./fade.component.scss'],
    animations: [
      trigger('state', [
        state(
          'visible',
          style({
            opacity: '1'
          })
        ),
        state(
          'hidden',
          style({
            opacity: '0'
          })
        ),
        transition('* => visible', [animate('500ms ease-out')]),
        transition('visible => hidden', [animate('500ms ease-out')])
      ])
    ],
    changeDetection: ChangeDetectionStrategy.OnPush
  })
  export class FadeComponent {
    state: FadeState;
    // tslint:disable-next-line: variable-name
    private _show: boolean;
    get show() {
      return this._show;
    }
    @Input()
    set show(value: boolean) {
      if (value) {
        this._show = value;
        this.state = 'visible';
      } else {
        this.state = 'hidden';
      }
    }

    animationDone(event: AnimationEvent) {
      if (event.fromState === 'visible' && event.toState === 'hidden') {
        this._show = false;
      }
    }
  }

fade.component.html

 <div
    *ngIf="show"
    class="fade"
    [@state]="state"
    (@state.done)="animationDone($event)"
  >
    <button mat-raised-button color="primary">test</button>
  </div>

example.component.css

:host {
  display: block;
}
.fade {
  opacity: 0;
}

3

我正在使用angular 5,为了让ngfor中的ngif对我有用,我不得不使用animateChild,并且在用户详细信息组件中,我使用* ngIf =“ user.expanded”来显示隐藏用户,并且它可以用于输入离开

 <div *ngFor="let user of users" @flyInParent>
  <ly-user-detail [user]= "user" @flyIn></user-detail>
</div>

//the animation file


export const FLIP_TRANSITION = [ 
trigger('flyInParent', [
    transition(':enter, :leave', [
      query('@*', animateChild())
    ])
  ]),
  trigger('flyIn', [
    state('void', style({width: '100%', height: '100%'})),
    state('*', style({width: '100%', height: '100%'})),
    transition(':enter', [
      style({
        transform: 'translateY(100%)',
        position: 'fixed'
      }),
      animate('0.5s cubic-bezier(0.35, 0, 0.25, 1)', style({transform: 'translateY(0%)'}))
    ]),
    transition(':leave', [
      style({
        transform: 'translateY(0%)',
        position: 'fixed'
      }),
      animate('0.5s cubic-bezier(0.35, 0, 0.25, 1)', style({transform: 'translateY(100%)'}))
    ])
  ])
];

0

就我而言,我错误地在错误的组件上声明了动画。

app.component.html

  <app-order-details *ngIf="orderDetails" [@fadeInOut] [orderDetails]="orderDetails">
  </app-order-details>

需要在(中使用元素的组件上声明动画appComponent.ts)中。我是在声明动画OrderDetailsComponent.ts

希望它将帮助犯同样错误的人

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.