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

347
Views
Apply CSS transition to element in Angular

I have the following popup element on and Angular 12 application:

<div class="window" [hidden]="!active" (clickOutside)="close()">
  <ng-content select="[window]"></ng-content>
</div> 

Is it possible to apply a CSS transition the DIV shows / hides?

I was considering changing its opacity.

over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

I think you're better off using an angular animation. It's more flexible:

This is one I'm using:

import { trigger, state, style, transition, group, animate } from '@angular/animations';

export const FadeInOutAnimation =
  trigger('fadeInOut', [
    state('in', style({
      'opacity': '1',
    })),
    state('out', style({
      'opacity': '0',
    })),
    transition('in => out', [
      group([
        animate('600ms ease-in-out', style({
          'opacity': '0'
        })),
      ])
    ]),
    transition('out => in', [
      group([
        animate('600ms ease-in-out', style({
          'opacity': '1'
        })),
      ])
    ]),
  ]);

And use it:

@Component({
  selector: 'app-popup',
  templateUrl: './popup.component.html',
  styleUrls: ['./popup.component.scss'],
  animations: [
    FadeInOutAnimation
  ]
})
export class PopupComponent implements OnInit {

  constructor() {
  }

  ngOnInit() {
  }

  @Input() dialogVisible: boolean;

}
<div class="popup-background" [@fadeInOut]="dialogVisible"></div>
<div class="popup-content form-control-normal" [@fadeInOut]="dialogVisible">
  <ng-content></ng-content>
</div>

But I think you still have to add the display: block and display: none to the states.

over 4 years ago · Santiago Trujillo Report

0

Set the styles in css:

.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 1000ms;
}

.fade-in {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 1000ms;
}

And apply the class in the popup component's HTML:

<div class="container" [class]="active ? 'fade-in' : 'fade-out'">

Check this Stackblitz: https://stackblitz.com/edit/angular-ivy-5whet6?file=src/app/popup/popup.component.html

over 4 years ago · Santiago Trujillo Report
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!