Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mateusmirandaalmeida/loading-easy
A feedback library for users.
https://github.com/mateusmirandaalmeida/loading-easy
angular angular-loading angularjs animate-request feedback-library loading
Last synced: 30 days ago
JSON representation
A feedback library for users.
- Host: GitHub
- URL: https://github.com/mateusmirandaalmeida/loading-easy
- Owner: mateusmirandaalmeida
- License: gpl-3.0
- Created: 2017-05-04T20:20:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-05T16:08:36.000Z (over 7 years ago)
- Last Synced: 2024-11-10T07:59:07.950Z (about 2 months ago)
- Topics: angular, angular-loading, angularjs, animate-request, feedback-library, loading
- Language: JavaScript
- Homepage: https://mateusmirandaalmeida.github.io/loading-easy/
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Loading Easy
A feedback library for users with a beautiful experience.
#Demo
[https://mateusmirandaalmeida.github.io/loading-easy/](https://mateusmirandaalmeida.github.io/loading-easy/)## Installation
```htmlbower install loading-easy --save
or
npm install loading-easy --save
```## Add dependencies to the section of your main html:
```htmlor
```
## Basic usage
```javascript
LoadingEasy.init('Your text here');
```## Finish Loading
```javascript
LoadingEasy.finish();
```## Customization
```javascript
var config = {
textColor: '#FFFFFF', // Color that will be defined in the text
iconColor: '#00E5FF', // Color that will be defined in the icon
background: 'rgba(0, 0, 0, 0.80)' //Color that will be defined in the background
animated: false // Active or inactive text animation
};
LoadingEasy.init('Your text here', config);
```## Installation of dependencies for use or development
```
npm install
```
## Tasks
Run the task 'npm run dev' for the development.
Run the task 'npm run prod' generating the minified file.