ng2-ladda-preloader
v1.0.1
Published
Angular2 wrapper for Ladda preloader
Downloads
1
Maintainers
Readme
Angular 2 component wrapper for Ladda
This is Angular 2 wrapper for Ladda
Check out Ladda's demo
Requirements
- NPM - Node package manager
Installation
run
npm install ng2-ladda-preloader --save
add
DtLaddaPreloader2Component
to your module'sdeclarations
:
// other imports
// ...
import { DtLaddaPreloader2Component } from 'ng2-ladda-preloader';
// ...
@NgModule({
declarations: [
// other declarations
// ...
DtLaddaPreloader2Component,
// ...
]
})
- no additional css links or script imports needed, because they are included in component already
Usage
Add dt-ladda-preloader
to any html element that should contain ladda preloader button, e.g.:
<div dt-ladda-preloader [operation]="click()" label="click me"></div>
Component support the following attributes:
operation
: Async operation that returns promiselabel
: Label that will be written on the buttoncolor
: Color of the spinner. Optional, default is 'white'style
: Style of the spinner appearance animation (see full list with examples at ladda's demo). Optional, default is 'zoom-in'
Feedback
Please leave your feedback if you have noticed any issues or have a feature request.
License
The repository code is open-sourced software licensed under the MIT license.