ng-ripple-module
v1.0.1
Published
An Angular ripple module as an alternative of available material design ripple.
Downloads
8
Maintainers
Readme
NgRippleModule
Installation
- Install this module by running the following command:
npm i ng-ripple-module
- Import
NgRippleModule
in your application's main@NgModule
andBrowserAnimationsModule
(if not imported yet) at yourproject_root/src/app/app.modules.ts
.
...
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgRippleModule } from 'ng-ripple-module';
...
@NgModule({
...
imports: [
...
BrowserModule,
BrowserAnimationsModule,
NgRippleModule
...
],
...
})
export class MyModule { ... }
Demo
Please visit the demo page here
Wiki
Now you're ready to spread the ripple easily in your angular app. For more detail information, please read the wiki.