angular animation scale width and height

Solutions on MaxInterview for angular animation scale width and height by the best coders in the world

showing results for - "angular animation scale width and height"
Tony
05 Nov 2019
1export const zoomHover = trigger('zoomHover', [
2  state('begin', style({transform: 'scale(1)'})),
3  state('end', style({transform: 'scale(1.05)'})),
4  transition('begin => end', [
5    animate(200)
6  ]),
7  transition('end => begin', [
8    animate(200)
9  ]),
10]);