web-dev-qa-db-ja.com

angular 6 animation * ngIf、transition not work

このプロジェクトでは、アニメーションの2つのバリエーションを紹介しています。

アニメーションオプション1、trigger( 'animationOption1')
苦情なしで動作します。

アニメーションオプション2、trigger( 'animationOption2')
遷移はここでは機能しません。

StackBlitz.comでこのプロジェクトをオンラインで確認

app.component.html

<h1>Animation Option 1</h1>
<div (click)="changeDivState()"
     [@animationOption1]="clickedDivState"
>Click Me
</div>

<h1>Animation Option 2</h1>
<button (click)="toggleMenu()">Click Me</button>
<ul *ngIf="isMenuOpen"
    [@animationOption2]="isMenuOpen ? 'open': 'close'"
>
  <li>Menu Item 1</li>
  <li>Menu Item 2</li>
  <li>Menu Item 3</li>
</ul>

app.component.ts

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css'],
  animations: [
    trigger('animationOption1', [
      state('start', style({
        backgroundColor: 'yellow',
        width: '150px',
        height: '150px'
      })),
      state('end', style({
        backgroundColor: 'green',
        width: '300px',
        height: '300px'
      })),
      transition('start => end', animate(1500)),
      transition('end => start', animate('800ms 0.5s ease-out'))
    ]),
    trigger('animationOption2', [
      state('close', style({
        opacity: 0,
        backgroundColor: 'yellow'
      })),
      state('open', style({
        opacity: 1,
        backgroundColor: 'green'
      })),
      transition('close <=> open', animate(3000)),
    ])
  ]
})
export class AppComponent {
  isMenuOpen = false;

  clickedDivState = 'start';

  changeDivState() {
    this.clickedDivState = 'end';
    setTimeout(() => {
      this.clickedDivState = 'start';
    }, 3000);
  }

  toggleMenu(): void {
    this.isMenuOpen = !this.isMenuOpen;
  }
}

グーグルは解決には至りませんでした。

5
ZoomAll

これを機能させるには、*ngIf="isMenuOpen"上の<ul>を削除する必要があります。 Angularはclosedopenの場合に要素が存在しないため、isMenuOpen/false状態間の遷移を計算できません。

以下は、 StackBlitz であり、*ngIfが削除された動作中のアニメーションを示しています。

または、 entering/leaving 状態を利用して、*ngIfと組み合わせて使用​​できます。次のようになります。

trigger('animationOption2', [      
  transition(':enter', [
    style({ backgroundColor: 'yellow' }),
    animate(300)
  ]),
  transition(':leave', [
    animate(300, style({ backgroundColor: 'yellow' }))
  ]),
  state('*', style({ backgroundColor: 'green' })),
])

動作中の StackBlitz です。

うまくいけばそれが役立つ!

12