https://github.com/gobwas/jquery-loading
Draws animations via DOM elements, with ability to push your own effects&algorithms for animations
https://github.com/gobwas/jquery-loading
Last synced: 18 days ago
JSON representation
Draws animations via DOM elements, with ability to push your own effects&algorithms for animations
- Host: GitHub
- URL: https://github.com/gobwas/jquery-loading
- Owner: gobwas
- Created: 2013-03-22T09:49:09.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-17T17:09:19.000Z (about 11 years ago)
- Last Synced: 2025-04-11T04:35:16.257Z (18 days ago)
- Language: JavaScript
- Homepage: http://gobwas.github.com/jQuery-Loading/
- Size: 944 KB
- Stars: 8
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
jQuery Loading Plugin
=====================This is a simple jQuery loading plugin, that draws animations via DOM elements,
with ability to push your own effects&algorithms for animations.It also have predefined algorithms and effects.
Usage
=====```javascript
// initialize loader with options:
// options are listed in wiki
$('#my-element').loading(options);// update runtime options of loading:
// progress >= 100 will delete loader;
// interval - u can change the speed of the current animation
$('#my-element').loading({progress: 50, interval: 100});```
Algorithms
----------+ Snake
Effects
-------+ Simple show/hide
+ Simple show/hide depends on progress
+ Fancy color changing
+ JumpingCreating your own animations
============================Creating your own algorithm
---------------------------n/a
Creating your own effect
------------------------n/a