jquery-asSpinner

A jquery plugin that convent a input into spinner that allows you to spin numbers with button.


Keywords
jquery, jquery-plugin, ecosystem:jquery, ui, es6, Spinner, form-input, number-input
License
LGPL-3.0
Install
npm install jquery-asSpinner@0.4.3

Documentation

jQuery asSpinner bower NPM version Dependency Status prs-welcome

A jquery plugin that convent a input into spinner that allows you to spin numbers with button.

Table of contents

Main files

dist/
├── jquery-asSpinner.js
├── jquery-asSpinner.es.js
├── jquery-asSpinner.min.js
└── css/
    ├── asSpinner.css
    └── asSpinner.min.css

Quick start

Several quick start options are available:

Download the latest build

Install From Bower

bower install jquery-asSpinner --save

Install From Npm

npm install jquery-asSpinner --save

Install From Yarn

yarn add jquery-asSpinner

Build From Source

If 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 build

Done!

Requirements

jquery-asSpinner requires the latest version of jQuery.

Usage

Including files:

<link rel="stylesheet" href="/path/to/asSpinner.css">
<script src="/path/to/jquery.js"></script>
<script src="/path/to/jquery-asSpinner.js"></script>

Required HTML structure

<input type="text" class="example" value="0" />

Initialization

All you need to do is call the plugin on the element:

jQuery(function($) {
  $('.example').asSpinner(); 
});

Examples

There are some example usages that you can look at to get started. They can be found in the examples folder.

Options

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

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();

val(value)

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(value)

Set the spinner value

$().asSpinner('set', '5');

get()

Get the spinner value.

var value = $().asSpinner('get');

spinUp()

Spin up the value.

$().asSpinner('spinUp');

spinDown()

Spin down the value.

$().asSpinner('spinUp');

enable()

Enable the spinner functions.

$().asSpinner('enable');

disable()

Disable the spinner functions.

$().asSpinner('disable');

destroy()

Destroy the spinner instance.

$().asSpinner('destroy');

Events

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 enable instance method has been called.
disable Fired immediately when the disable instance method has been called.
destroy Fires when an instance is destroyed.

No conflict

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>

Browser support

Tested on all major browsers.

Safari Chrome Firefox Edge IE Opera
Latest ✓ Latest ✓ Latest ✓ Latest ✓ 9-11 ✓ Latest ✓

As a jQuery plugin, you also need to see the jQuery Browser Support.

Contributing

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:

Development

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 install

Then you can generate new distributable files from the sources, using:

gulp build

More gulp tasks can be found here.

Changelog

To see the list of recent changes, see Releases section.

Copyright and license

Copyright (C) 2016 amazingSurge.

Licensed under the LGPL license.

⬆ back to top