角度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;
}

回答:


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
はい、非表示にすると非表示になりますが、要素はまだ存在しています。*ngIfDOMから完全に削除します。
ギュンターZöchbauer

1
みたいdisplay:noneです。display:hiddenAFAIK はありません。
ギュンターZöchbauer

1
@GünterZöchbauerはい、不透明度はハードウェアで加速されるため、より適しています。
–ÆndriDomi 2016

1
気にしないで。不透明度は要素を削除せず、その下の要素もカバーします。scale(0)を使用して、display:noneなどのUIに影響を与えることをお勧めします。素晴らしい移行で。OP彼は角度のアニメーションを使用することができます答えるためにangular.io/docs/ts/latest/guide/animations.htmlスケール(0)空の状態で:変換で
Ændriドミ

1
トリガー、スタイル、アニメーション、およびトランジションのアイテムは、@ angular / animationsから含める必要があります。したがって、インポート{ trigger, style, animate, transition } from '@angular/animations';
Joel Hernandez

137

最新のangular 2のドキュメントに よると、「Entering and Leaving」要素をアニメーション化できます(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>

私はの例を構築しました スライドとフェードのアニメーションの ここに作成しました

解説「空」と「*」に:

  • voidngIffalseに設定されている場合の状態です(要素がビューにアタッチされていない場合に適用されます)。
  • *-多くのアニメーション状態が存在する可能性があります(詳細はドキュメントを参照)。*状態が「ワイルドカード」としてそれらのすべてに優先します(私の例では、この状態時には、ngIfに設定されていますtrue)。

通知(角度のあるドキュメントから取得):

アプリモジュール内で追加の宣言、 import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

Angularアニメーションは、標準のWebアニメーションAPIの上に構築され、それをサポートするブラウザーでネイティブに実行されます。他のブラウザでは、ポリフィルが必要です。GitHubからweb-animations.min.jsを取得して、ページに追加します。


2
角度付きアニメーションを使用するには、BrowserAnimationsModuleをインポートする必要があります。私が間違っていない場合、アニメーションモジュールは自身のモジュールに移動される前にangular 2のコアモジュールで見つかりました。そのため、インポートなしで多くのプランカーの例が見つかります。:ここでは、インポートと更新plnkrだリンク
snaplemouton

1
そのようなアプローチを使用する場合leave、コンポーネントは*ngIfその前にDOMから削除されるため、アニメーションは行われません。
Slava Fomin II

4
これは受け入れられる答えである必要があります。実際には、他の回避策ではなくngIfを使用したい人に解決策を提供します。
Ovi Trif 2018年

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 2017年

4

1つの方法は、ngIfプロパティのセッターを使用して、値の更新の一部として状態を設定することです。

StackBlitzの例

fade.component.ts

 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を使用する必要があり、user-detailコンポーネントでは* 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代わりにた。

うまくいけば、誰かが同じ間違いをするのを助けるでしょう

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.