Angular 2
Animación
Buscar..
Transición entre estados nulos
@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 {
}
]
Animando entre múltiples estados
El <div>
en esta plantilla crece a 50px
y luego a 100px
y luego se reduce a 20px
al hacer clic en el botón.
Cada state
tiene un estilo asociado descrito en los metadatos de @Component
.
La lógica para cualquier state
esté activo puede administrarse en la lógica del componente. En este caso, el size
variable del componente contiene el valor de cadena "pequeño", "mediano" o "grande".
El elemento <div>
responde a ese valor a través del trigger
especificado en los metadatos de @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
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow