1.0.0 • Published 7 years ago

loading-easy v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

Loading Easy

A feedback library for users with a beautiful experience.

Installation

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

Add dependencies to the section of your main html:

<script src="bower_components/loading-easy/dist/loading-easy.min.js"></script>
or
<script src="node_modules/loading-easy/dist/loading-easy.min.js"></script>

Basic usage

LoadingEasy.init('Your text here');

Customization

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.