Ricerca…


Transizione tra stati nulli

    @Component({
        ...
        animations: [
            trigger('appear', [
                transition(':enter', [
                    style({
                      //style applied at the start of animation
                    }),
                animate('300ms ease-in', style({
                    //style applied at the end of animation
                }))
                ])
            ])
        ]
    })
    class AnimComponent {

    }
]

Animazione tra più stati

Il <div> in questo modello cresce a 50px e quindi a 100px e poi si riduce a 20px quando si fa clic sul pulsante.

Ogni state ha uno stile associato descritto nei metadati di @Component .

La logica per qualsiasi state attivo può essere gestita nella logica del componente. In questo caso, la size variabile del componente mantiene il valore di stringa "piccolo", "medio" o "grande".

L'elemento <div> risponde a quel valore attraverso il trigger specificato nei metadati @Component : [@size]="size" .

@Component({
  template: '<div [@size]="size">Some Text</div><button (click)="toggleSize()">TOGGLE</button>',
  animations: [
    trigger('size', [
      state('small', style({
        height: '20px'
      })),
      state('medium', style({
        height: '50px'
      })),
      state('large', style({
        height: '100px'
      })),
      transition('small => medium', animate('100ms')),
      transition('medium => large', animate('200ms')),
      transition('large => small', animate('300ms'))
    ])
  ]
})
export class TestComponent {

    size: string;

    constructor(){
        this.size = 'small';
    }
    toggleSize(){
        switch(this.size) {
            case 'small':
                this.size = 'medium';
                break;
            case 'medium':
                this.size = 'large';
                break;
            case 'large':
                this.size = 'small';
        }
    }
}


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow