Angular-Animations
Angular Animations utility library for Angular 4.2+
Prerequisites
Make sure you import BrowserAnimationModule in your angular app.
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 { }
Installation and Usage
npm i angular-animations --save
Basic usage
Running Demo App
npm start
Authors
License
This project is licensed under the MIT License - see the LICENSE file for details