Guest User

Untitled

a guest
Jan 24th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. private xPosition:number = 157;
  2.  
  3. animations: [
  4. trigger('positionChanged', [
  5. state('lastPosition' , style({ right: this.xPosition })),
  6. state('newPosition', style({ right: this.xPosition + 10 })),
  7. transition('* => *', animate('.5s'))
  8. ])
  9. ]
Add Comment
Please, Sign In to add comment