weatherstar-switch
v1.0.7
Published
A simple and powerful switch for checkbox.
Downloads
1,075
Readme
Switch
:rabbit: A simple and powerful iOS style switch for checkbox.
Installation
Standalone:
<link rel="stylesheet" href="dist/switch.css" />
<script src="dist/switch.js"></script>
npm:
$ npm install weatherstar-switch --save-dev
Usage
<input type="checkbox" class="checkbox-switch" />
standalone version
var el = document.querySelector('.checkbox-switch');
var mySwitch = new Switch(el, options);
work with module bundle
require('weatherstar-switch/dist/switch.css');
var Switch = require('weatherstar-switch');
var el = document.querySelector('.checkbox-swtich');
var mySwitch = new Switch(el, options);
Settings and Defaults
defaults = {
size : 'default'
, checked : undefined
, onText : 'Y'
, offText : 'N'
, onSwitchColor : '#64BD63'
, offSwitchColor : '#fff'
, onJackColor : '#fff'
, offJackColor : '#fff'
, showText : false
, disabled : false
, onInit : function(){}
, beforeChange : function(){}
, onChange : function(){}
, beforeRemove : function(){}
, onRemove : function(){}
, beforeDestroy : function(){}
, onDestroy : function(){}
};
size
: size of switch element, can bedefault
|small
|large
checked
: state of switch and checbox, ifundefined
the switch state according to the checkboxonText
: text in the jack when switch ONoffText
: text in the jack when switch OFFonSwitchColor
: color of checked switch elementoffSwitchColor
: color of unchecked switch elementonJackColor
: color of checked jack elementoffJackColor
: color of unchecked jack elementshowText
: show or hide text in the jack of switchdisabled
: enable or disable click events and changing the state of the switchonInit
: called when switch init finishbeforeChange
: called before original checkbox'schecked
changeonChange
: called when original checkbox'schecked
changebeforeRemove
: called beforeremove switch element from DOM
onRemove
: called whenremove switch element from DOM
donebeforeDestroy
: called beforeremove all events on switch element
onDestroy
: called whenremove all events on switch element
done
API
.getChecked()
Get switch element checked status.
.on()
Set switch ON.
.off()
Set switch OFF.
.toggle()
Toggle switch.
.disable()
Disable events bind to switch.
.enable()
Enable events bind to switch.
.destroy()
Remove all events bind to switch.
.remove()
Remove switch form DOM and show the checkbox.
License
MIT © zhiyul