blob: e3f3ca03d0c601b7e15bf11a08cc4f38de340e85 [file] [log] [blame]
import { trigger, state, animate, style, transition } from '@angular/animations';
export  function  slideInOpacity() {
return  trigger('slideInOpacity', [
state('void',  style({  opacity:  0 })),
state('*',  style({  opacity:  1  })),
transition(':enter', [
style({ transform:  'scale(1)' }),
animate(500)
])
]);
}