Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

121
Views
How to animate a same state transition in Angular

Same question as How to trigger n variable states (same state) in angular animations? but there is no code posted in the answer and the stackoverflow gods do not allow me to post there.

Snippet for reference, it won't run

animations: [
    trigger('slide', [
      state('left', style({
        transform: 'translateX(-{{translationFactor}}px)'
      }), {
        params: {
          translationFactor: 0
        },
      }),
      state('right', style({
        transform: 'translateX(-{{translationFactor}}px)'
      }), {
        params: {
          translationFactor: 0
        },
      }),
      transition('* => *', animate(500)),
    ]),
  ],

  onAnimationEnd(event: AnimationEvent) {
    this.isSliding = false;
  }
<div (@slide.done)="onAnimationEnd($event)" [@slide]="{ value: activeDirection, params: { translationFactor: translationFactor } }">

When the transition is between these states, it works but it doesn't work when you have to go from 'right' to "more" 'right', which makes sense, but I can't figure out how to reset the state so when 'right' ends it can also transition to 'right' again

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!