Live Preview
<link rel="stylesheet" href="dist/switch.css" /> <script src="dist/switch.js"></script>
$ npm install weatherstar-switch --save-dev
<input type="checkbox" class="checkbox-switch" />
standalone version
var el = document.querySelector('.checkbox-swtich'); 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);
defaults = { size : 'default' , checked : undefined , onText : 'Y' , offText : 'N' , onSwitchColor : '#64BD63' , offSwitchColor : '#fff' , onJackColor : '#fff' , offJackColor : '#fff' , showText : false , disabled : false , onInit : function(){} , onChange : function(){} , onRemove : function(){} , onDestroy : function(){} };
size
: size of switch element, can be default
| small
| large
checked
: state of switch and checbox, if undefined
the switch state according to the checkbox onText
: text in the jack when switch ON offText
: text in the jack when switch OFF onSwitchColor
: color of checked switch element offSwitchColor
: color of unchecked switch element onJackColor
: color of checked jack element offJackColor
: color of unchecked jack element showText
: show or hide text in the jack of switch disabled
: enable or disable click events and changing the state of the switch onInit
: called when switch init finish onChange
: called when original checkbox's checked
change onRemove
: called when mySwitch.remove()
onDestroy
: called when mySwitch.destroy()
Set switch ON.
Set switch OFF.
Toggle switch.
Disable events bind to switch.
Enable events bind to switch.
Remove all events bind to switch.
Remove switch form DOM and show the checkbox.
MIT ©zhiyul