angular-animations
Angular Animations utility library for Angular 4.2+
Getting started
Install package and dependencies
npm i angular-animations --save
npm i @angular/animations@latest --save
Import "BrowserAnimationsModule" from "@angular/platform-browser/animations" in your root NgModule
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'
@NgModule({
declarations: [
...
],
imports: [
...
BrowserAnimationsModule
],
})
export class AppModule { }
Running Demo App
npm start
Authors
License
This project is licensed under the MIT License - see the LICENSE file for details