UNPKG

gapi-cli

Version:

Gapi command line interface

13 lines (10 loc) 401 B
import { trigger, state, animate, transition, style, AnimationTriggerMetadata} from '@angular/animations'; export const FadeOut: AnimationTriggerMetadata = trigger('fadeOut', [ state('0' , style({ opacity: 1 })), state('1', style({ opacity: 0 })), transition('1 => 0', animate('600ms')), transition('0 => 1', animate('300ms')), ]); export class FadeOutInterface { fadeOutVisibility = 0; }