UNPKG

@evan.network/ui-angular-core

Version:

The angular-core operates as an global and central library for the evan.network Angular 5 frontend development. Using this project you will be able to to the following things:

18 lines (17 loc) 461 B
import { AnimationEntryMetadata } from 'angular-libs'; /** * Create an transition to create an opacity transition effect. ==> Smooth * disappearing * @Component({ * ... * animations: [ * createOpacityTransition(), * ] * }) * * <div *ngIf="**" [@opacityTransition]></div> * * @return {AnimationEntryMetadata} the opacity transition */ declare const createOpacityTransition: AnimationEntryMetadata; export { createOpacityTransition };