Skip to content

Commit

Permalink
Improvements on documentation pages, several bug fixes on animations.…
Browse files Browse the repository at this point in the history
… Added 3X version and removed Large version.
  • Loading branch information
danielcardoso committed Jul 12, 2015
1 parent 8a83bef commit 977e748
Show file tree
Hide file tree
Showing 223 changed files with 39,359 additions and 18,925 deletions.
29 changes: 24 additions & 5 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,14 +1,33 @@
Please view this file on the master branch, on stable branches it's out of date.

v 1.0.1
Added:
v 1.1.0 (Jul 12, 2015)
Improvements on documentation pages, several bug fixes on animations.
Added 3X version and removed Large version.

Added 7 animations:
- Ball Spin Clockwise Fade Rotating
- Ball Spin Fade Rotating
- Fire
- Line Spin Clockwise Fade Rotating
- Line Spin Fade Rotating
- Square Loader
- Timer


v 1.0.1 (May 21, 2015)
Minor style adjustments on several animations and examples.

Added 4 animations:
- Ball Spin
- Ball Spin Clockwise
- Ball Square Clockwise Spin
- Ball Square Spin

v 1.0.0
Added:

v 1.0.0 (May 11, 2015)
First public release.

Added 42 animations:
- Ball 8bits
- Ball Atom
- Ball Beat
Expand Down Expand Up @@ -50,4 +69,4 @@ v 1.0.0
- Pacman
- Square Jelly Box
- Square Spin
- Triangle Skew Spin;
- Triangle Skew Spin
53 changes: 50 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# [Load Awesome](http://github.danielcardoso.net/load-awesome/)

##### An awesome collection of — Pure CSS — Loaders and Spinners
### An awesome collection of — Pure CSS — Loaders and Spinners

A full suite of **53 animations** for websites,
created and maintained by [Daniel Cardoso](http://www.danielcardoso.net).

![Bower version](https://img.shields.io/bower/v/load-awesome.svg?style=flat-square)
![Issues](https://img.shields.io/github/issues/danielcardoso/load-awesome.svg?style=flat-square)
Expand All @@ -12,6 +14,9 @@
## Table of contents
- [Browser Support](#browser-support)
- [Quick start](#quick-start)
- [Usage](#usage)
- [Customising](#customising)
- [Versioning](#versioning)
- [Creator](#creator)
- [License](#license)

Expand All @@ -29,12 +34,54 @@ Several quick start options are available:
- Install with [Bower](http://bower.io): `bower install load-awesome`


## Usage
#### Standard
- Include specific css file (e.g. `ball-atom.css`)
- Create an element and add the animation class (e.g. `<div class="la-ball-atom"></div>`)
- Insert the appropriate number of childrens `<div>`s into the previous element


## Customising
#### Changing all colors
Add styles to the main:
``` css
.la-ball-atom {
color: #79bbb5;
}
```



#### Changing color of specific elements
Add styles to the correct child `div` elements:
``` css
.la-ball-atom > div:nth-child(1) {
color: #f4696b;
}
.la-ball-atom > div:nth-child(2) {
color: #87c4a3;
}
.la-ball-atom > div:nth-child(3) {
color: #fec54f;
}
```


## Versioning
Load Awesome will be maintained under the Semantic Versioning guidelines.
Releases will be numbered with the following format:

`<major>.<minor>.<patch>`

For more information on SemVer, please visit http://semver.org.


## Creator
##### [Daniel Cardoso](http://www.danielcardoso.net)
#### [Daniel Cardoso](http://www.danielcardoso.net)
- [@Twitter](https://twitter.com/DanielCardoso)
- [@GitHub](https://github.com/DanielCardoso)


## License
##### The MIT License (MIT)
#### The MIT License (MIT)
Copyright (c) 2015 DanielCardoso.net
8 changes: 5 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "load-awesome",
"description": "An awesome collection of — Pure CSS — Loaders and Spinners",
"version": "1.0.1",
"author": "Daniel Cardoso <@DanielCardoso>(http://www.danielcardoso.net)",
"version": "1.1.0",
"author": "Daniel Cardoso(http://www.danielcardoso.net)",
"keywords": [
"css",
"pure",
Expand All @@ -15,12 +15,14 @@
"homepage": "http://github.danielcardoso.net/load-awesome/",
"license": "MIT",
"main": [
"dist/examples/index.html"
"docs/index.html"
],
"ignore": [
"/.*",
"bower.json",
"package.json",
"CHANGELOG",
"LICENSE",
"README.md"
]
}
Loading

0 comments on commit 977e748

Please sign in to comment.