sat-popover is an animated and highly customizable popup component for Angular applications.
sat popover does not have an anchor, angular cdk popover, ngx mat popover, angular overlay input, sat popover angular example, angularjs material popover
How to make use of it:
1. sat-popover
relies on the Angular CDK to take advantage of its overlay API.
npm install --save @ncstate/sat-popover @angular/cdk
2. If you want the popup animation to work, you must include BrowserAnimationsModule
in your app.
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; @NgModule({ ... imports: [ BrowserAnimationsModule ], ... }) export class AppModule { }
3. If you prefer no animations, you can include NoopAnimationsModule
.
import { NoopAnimationsModule } from '@angular/platform-browser/animations'; @NgModule({ ... imports: [ NoopAnimationsModule ], ... }) export class AppModule { }
4. Finally, import the SatPopoverModule to provide the necessary components and directives.
import { SatPopoverModule } from '@ncstate/sat-popover'; @NgModule({ ... imports: [ SatPopoverModule ], ... }) export class AppModule { }
animated popover component for angular Plugin/Github
See Demo And Download
Official Website(ncstate-sat): Click Here
This superior jQuery/javascript plugin is developed by ncstate-sat. For extra advanced usage, please go to the official website.