12 lines
269 B
TypeScript
12 lines
269 B
TypeScript
// #docregion
|
|
import { animation, style, animate } from '@angular/animations';
|
|
|
|
export const transAnimation = animation([
|
|
style({
|
|
height: '{{ height }}',
|
|
opacity: '{{ opacity }}',
|
|
backgroundColor: '{{ backgroundColor }}'
|
|
}),
|
|
animate('{{ time }}')
|
|
]);
|