A jquery plugin that convent a input into spinner that allows you to spin numbers with button.
- Main files
- Quick start
- Requirements
- Usage
- Examples
- Options
- Methods
- Events
- No conflict
- Browser support
- Contributing
- Development
- Changelog
- Copyright and license
dist/
├── jquery-asSpinner.js
├── jquery-asSpinner.es.js
├── jquery-asSpinner.min.js
└── css/
    ├── asSpinner.css
    └── asSpinner.min.css
Several quick start options are available:
- Development - unminified
- Production - minified
bower install jquery-asSpinner --savenpm install jquery-asSpinner --saveyarn add jquery-asSpinnerIf you want build from source:
git clone git@github.com:amazingSurge/jquery-asSpinner.git
cd jquery-asSpinner
npm install
npm install -g gulp-cli babel-cli
gulp buildDone!
jquery-asSpinner requires the latest version of jQuery.
<link rel="stylesheet" href="/path/to/asSpinner.css">
<script src="/path/to/jquery.js"></script>
<script src="/path/to/jquery-asSpinner.js"></script><input type="text" class="example" value="0" />All you need to do is call the plugin on the element:
jQuery(function($) {
  $('.example').asSpinner(); 
});There are some example usages that you can look at to get started. They can be found in the examples folder.
jquery-asSpinner can accept an options object to alter the way it behaves. You can see the default options by call $.asSpinner.setDefaults(). The structure of an options object is as follows:
{
  namespace: 'asSpinner',
  skin: null,
  disabled: false,
  min: -10,
  max: 10,
  step: 1,
  name: null,
  precision: 0,
  rule: null, //string, shortcut define max min step precision
  looping: true, // if cycling the value when it is outofbound
  mousewheel: false, // support mouse wheel
  format(value) { // function, define custom format
    return value;
  },
  parse(value) { // function, parse custom format value
    return parseFloat(value);
  }
}
Methods are called on asSpinner instances through the asSpinner method itself. You can also save the instances to variable for further use.
// call directly
$().asSpinner('destroy');
// or
var api = $().data('asSpinner');
api.destroy();Set the spinner value if value is defined or get the value.
// set the val
$().asSpinner('val', '5');
// get the val
var value = $().asSpinner('val');Set the spinner value
$().asSpinner('set', '5');Get the spinner value.
var value = $().asSpinner('get');Spin up the value.
$().asSpinner('spinUp');Spin down the value.
$().asSpinner('spinUp');Enable the spinner functions.
$().asSpinner('enable');Disable the spinner functions.
$().asSpinner('disable');Destroy the spinner instance.
$().asSpinner('destroy');jquery-asSpinner provides custom events for the plugin’s unique actions.
$('.the-element').on('asSpinner::ready', function (e) {
  // on instance ready
});| Event | Description | 
|---|---|
| init | Fires when the instance is setup for the first time. | 
| ready | Fires when the instance is ready for API use. | 
| change | Fires when the value is changing | 
| enable | Fired immediately when the enableinstance method has been called. | 
| disable | Fired immediately when the disableinstance method has been called. | 
| destroy | Fires when an instance is destroyed. | 
If you have to use other plugin with the same namespace, just call the $.asSpinner.noConflict method to revert to it.
<script src="other-plugin.js"></script>
<script src="jquery-asSpinner.js"></script>
<script>
  $.asSpinner.noConflict();
  // Code that uses other plugin's "$().asSpinner" can follow here.
</script>Tested on all major browsers.
|  |  |  |  |  |  | 
|---|---|---|---|---|---|
| Latest ✓ | Latest ✓ | Latest ✓ | Latest ✓ | 9-11 ✓ | Latest ✓ | 
As a jQuery plugin, you also need to see the jQuery Browser Support.
Anyone and everyone is welcome to contribute. Please take a moment to
review the guidelines for contributing. Make sure you're using the latest version of jquery-asSpinner before submitting an issue. There are several ways to help out:
- Bug reports
- Feature requests
- Pull requests
- Write test cases for open bug issues
- Contribute to the documentation
jquery-asSpinner is built modularly and uses Gulp as a build system to build its distributable files. To install the necessary dependencies for the build system, please run:
npm install -g gulp
npm install -g babel-cli
npm installThen you can generate new distributable files from the sources, using:
gulp build
More gulp tasks can be found here.
To see the list of recent changes, see Releases section.
Copyright (C) 2016 amazingSurge.
Licensed under the LGPL license.