“Deslice Div en Click Angular” Código de respuesta

Deslice Div en Click Angular

<div *ngIf="visible" [@slideInOut]>This element will slide up and down when the value of 'visible' changes from true to false and vice versa.</div>
Talented Turtle

Deslice Div en Click Angular

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

@Component({
  ...
  animations: [
    trigger('slideInOut', [
      transition(':enter', [
        style({transform: 'translateY(-100%)'}),
        animate('200ms ease-in', style({transform: 'translateY(0%)'}))
      ]),
      transition(':leave', [
        animate('200ms ease-in', style({transform: 'translateY(-100%)'}))
      ])
    ])
  ]
})
Talented Turtle

Respuestas similares a “Deslice Div en Click Angular”

Preguntas similares a “Deslice Div en Click Angular”

Más respuestas relacionadas con “Deslice Div en Click Angular” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código