Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mithunsatheesh/js-counter
Simple Counter plugin with jquery.
https://github.com/mithunsatheesh/js-counter
Last synced: about 1 month ago
JSON representation
Simple Counter plugin with jquery.
- Host: GitHub
- URL: https://github.com/mithunsatheesh/js-counter
- Owner: mithunsatheesh
- Created: 2012-05-30T07:03:26.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-20T08:26:05.000Z (over 12 years ago)
- Last Synced: 2024-04-15T03:09:30.196Z (9 months ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
Awesome Lists containing this project
README
h1. JS Counter jQuery Plugin
*Version:* 1.0
*License:* "Dual GPL + MIT"
*Author:* "Mithun Satheesh"
h2. About
JS Counter is a jquery plugin for showing up a frequently changing value number which counts the counter value from a start value to the current value as set by the user.
h2. Browser Support
Tested on IE8+, Safari, Chrome, Firefox 3+
h2. Use
h3. HTML
h3. Javascript
$(document).ready(function(){$("#num").jsCount({start:980,end:1021});
});
h2. Options
This Plugin provides following options.
start and end values define the range in which the counter functions.
You can use the speed option to set the speed of counter. It defines the number of micro seconds between each count. So lower the value higher the speed.
default value for speed is 20.
$(document).ready(function(){$("#num").jsCount({start:980,end:1021,speed:10});
});
h2. Changelog
*Version 0.1*
* Initial Release