Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```html

bower install loading-easy --save
or
npm install loading-easy --save
```

## Add dependencies to the section of your main html:
```html

or

```

## 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.