Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chemzqm/loadings
cavas animated loadings
https://github.com/chemzqm/loadings
Last synced: 6 days ago
JSON representation
cavas animated loadings
- Host: GitHub
- URL: https://github.com/chemzqm/loadings
- Owner: chemzqm
- Created: 2015-11-26T08:43:32.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-12T17:57:18.000Z (almost 9 years ago)
- Last Synced: 2024-04-13T21:20:26.369Z (9 months ago)
- Language: JavaScript
- Homepage: https://chemzqm.github.io/loadings/
- Size: 64.5 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 42
-
Metadata Files:
- Readme: Readme.md
- Changelog: history.md
Awesome Lists containing this project
README
# Loadings
Some canvas loadings like [jxnblk/loading](https://github.com/jxnblk/loading)
[chemzqm.github.io/loadings/](https://chemzqm.github.io/loadings/)
Why canvas?
* Better support for browsers [http://caniuse.com/#canvas](http://caniuse.com/#canvas)
* Better performance
* Control via javascript## Usage
npm i loadings
You can use one of them like `require('loadings/lib/dots')`, some bundle tools like [webpack](webpack.github.io), would build only the parts you need.
## Example
``` js
var dots = require('loadings/lib/dots')
function $(id) {
return document.getElementById(id)
}var s = dots(document.getElementById('dots'))
// when you want to stop
s.stop()
```## API
#### .dots(parentNode, [options])
#### .bars(parentNode, [options])
#### .wander(parentNode, [options])
#### .spin(parentNode, [options])
#### .spokes(parentNode, [options])
#### .bubbles(parentNode, [options])* `parentNode` the parentNode for canvas render
* `options` optional options
* `options.color` the fill color for loading region
* `options.duration` anmation duration in milisecond
* `options.radius` set the radius for animate region, works only with `spin` `bubbles` `spokes`#### loading.stop()
stop the animation
## License
MIT
Copyright © 2015 [email protected]
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.