angular animation scale width and height

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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]);