Answers for "angular animation scale width and height"

0

angular animation scale width and height

export const zoomHover = trigger('zoomHover', [
  state('begin', style({transform: 'scale(1)'})),
  state('end', style({transform: 'scale(1.05)'})),
  transition('begin => end', [
    animate(200)
  ]),
  transition('end => begin', [
    animate(200)
  ]),
]);
Posted by: Guest on January-14-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language