checkbox-beautifier
v1.3.0
Published
Beautify checkbox inputs of your form using browser's compatible and modern css3 styles.
Downloads
6
Readme
Checkbox Beautifier
Beautify checkbox inputs of your form using browser's compatible and modern css3 styles that will be matched your custom web design.
This package is written in vanilla javascript and completely CSS free without extra dependencies.
Browser's compatibility:
- Firefox latest
- Google - latest
- Opera - latest
- IE Edge - latest
Installation:
Add a package using yarn package manager.
$ yarn add checkbox-beautifier
Add a package using npm package manager.
$ npm i checkbox-beautifier
Webpack bundler usage and import.
import CheckboxBeautifier from "checkbox-beautifier";
// Init Square checkbox type with default options.
CheckboxBeautifier.create('Square');
// Init Slider checkbox type with default options.
CheckboxBeautifier.create('Slider');
// Init Classic checkbox type with default options.
CheckboxBeautifier.create('Classic');
If you are not going to use a bundler like a webpack just put a script tag with a module type at the bottom of html page.
<script type="module">
import CheckboxBeautifier from './src/index.js';
// Init Square checkbox type with default options.
CheckboxBeautifier.create('Square');
// Init Slider checkbox type with default options.
CheckboxBeautifier.create('Slider');
// Init Classic checkbox type with default options.
CheckboxBeautifier.create('Classic');
</script>
Init Square checkbox type with default classes that should be added to every input of html form.
<form>
<!-- Input is placed inside label -->
<label>
Banana
<input type="checkbox" name="fruits[]" value="banana" class="checkbox-beautify-square">
</label>
<!-- If you want to use label separately -->
<label for="bar">Mango</label>
<input id="bar" type="checkbox" name="fruits[]" value="mango" class="checkbox-beautify-square">
</form>
Init with custom options.
<script type="module">
import CheckboxBeautifier from './src/index.js';
// Init with custom options.
CheckboxBeautifier.create('Square', {
colorChecked: 'brown',
colorUnchecked: 'lightgrey',
border: '1px solid brown',
size: '26px',
borderRadius: '2px',
paddedSpace: '4px',
// If you use custom selector, it should be included in every input instead of default one.
selector: '.my-custom-selector',
shadow: '0 0 4px rgba(0, 200, 0, 0.4)',
transition: 'all 0.6s'
});
</script>
Square checkbox type options
is an object literal with the following options:
colorChecked
— Matches checked state of input checkbox, you can apply naming colors like green, red, etc. or hex, hsla, rgbablack
orrgba(0,0,0,1)
. Default value is set toblack
colorcolorUnchecked
— Matches initial (unchecked) state of input checkbox, you can apply naming colorsblack
orrgba(0,0,0,1)
. Default value is set toblack
colorborder
— Checkbox border, standard css border style. Default value is set to1px solid black
size
— Checkbox size in px, you may set any size you want to match your design style. Default value is set to24px
borderRadius
— If you want to make checkbox corners to be rounded, default value is set to1px
paddedSpace
— This property added space between outer border, it is not limited so mostly depends on a size of checkbox and your design. Increase or decrease it cautiously by 1px and check how it looks. Default value is set to4px
shadow
— Add shadow from the outer box, If you want shadow to be disabled just set value tonone
. Default value is set to0 0 4px rgba(0, 0, 0, 0.5)
transition
— Add css transition property between checked/unchecked states. Default value is set toall 0.4s
selector
— If you want to use custom selector, set value to.your-custom-selector
. Default value is set to.checkbox-beautify-square
areGrouped
— If you need a group of checkboxes that will be handled with a master checkbox. Default value is set tofalse
. Also you need to specify which checkbox will be master and which are will be slaves using css class. You can find out more in demo-square.html file.labelSpace
— This property adds a space between outer border and a label text. Default value is set to0.4rem
Slider checkbox type options
is an object literal with the following options:
handleColorChecked
— Matches checked state of input checkbox, you can apply preferable css3 color value like hex, rgba, hsla or color naming green, red, etc. Default value is set towhite
handleColorUnchecked
— Matches unchecked state of input checkbox, you can apply preferable css3 color value like hex, rgba, hsla or color naming green, red, etc. Default value is set tolightblue
boxColorChecked
— Matches checked state of input checkbox, you can apply preferable css3 color value like hex, rgba, hsla or color naming green, red, etc. Default value is set tolightblue
boxColorUnchecked
— Matches checked state of input checkbox, you can apply preferable css3 color value like hex, rgba, hsla or color naming green, red, etc. Default value is set towhite
boxWidth
— Width size of a slider box. Default value is set to80px
boxHeight
— Width size of a slider box. Default value is set to30px
boxBorder
— Slider box border is a standard css border style. Default value is set to1px solid rgba(0,0,0,.3)
handleSize
— Size of a slider' handle. Size value cannot be more than a boxHeight value. Default value is set to30px
borderRadius
— Radius is applied for both handle and boxBorder. You can set different value to see an effect. For example to make slider without radius set value to0
after it will be fully rectangle. Default value is set to30px
transition
— Add css transition property between checked/unchecked states. Default value is set toall 0.4s
selector
— If you want to use custom selector, set value to.my-custom-selector
. Default value is set to.checkbox-beautify-slider
shadow
— Add shadow from the outer box border, If you want shadow to be disabled just set value tonone
. Default value is set to0 0 4px lightgray
areGrouped
— If you need a group of checkboxes that will be triggered with a master checkbox. Default value is set tofalse
. Also you need to specify which checkbox will be master and which are will be slaves using css class. You can find out more in demo-slide.html file.labelSpace
— This property adds a space between outer border and a label text. Default value is set to0.4rem
Classic checkbox type options
is an object literal with the following options:
colorChecked
— Matches checked state of input checkbox, you can apply naming colors like green, red, etc. or hex, hsla, rgbablack
orrgba(0,0,0,1)
. Default value is set toblack
colorcolorUnchecked
— Matches initial (unchecked) state of input checkbox, you can apply naming colorsblack
orrgba(0,0,0,1)
. Default value is set toblack
colorcheckmark
— Checkmark uses standard css border style, so you can make it thicker and change its color. Default value is set to1px solid black
border
— Checkbox border, standard css border style. Default value is set to1px solid black
size
— Checkbox size in px, you may set any size you want to match your design style. Default value is set to24px
borderRadius
— If you want to make checkbox corners to be rounded, default value is set to1px
paddedSpace
— This property added space between outer border, it is not limited so mostly depends on a size of checkbox and your design. Increase or decrease it cautiously by 1px and check how it looks. Default value is set to4px
shadow
— Add shadow from the outer box, If you want shadow to be disabled just set value tonone
. Default value is set to0 0 4px rgba(0, 0, 0, 0.5)
transition
— Add css transition property between checked/unchecked states. Default value is set toall 0.4s
selector
— If you want to use custom selector, set value to.your-custom-selector
. Default value is set to.checkbox-beautify-classic
areGrouped
— If you need a group of checkboxes that will be handled with a master checkbox. Default value is set tofalse
. Also you need to specify which checkbox will be master and which are will be slaves using css class. You can find out more in demo-classic.html file.labelSpace
— This property adds a space between outer border and a label text. Default value is set to0.4rem
If you need to use a group of checkboxes, use areGrouped option and set its value to true.
<script type="module">
import CheckboxBeautifier from './src/index.js';
CheckboxBeautifier.create('Square', {
areGrouped: true
});
</script>
Add .checkbox-beautify--master class for a master input checkbox and .checkbox-beautify--slave class for slave input checkboxes.
If you need all slaves to be selected on load just add checked attribute to the master input.
<form>
<!-- Master checkbox -->
<label>
Select all colors
<input type="checkbox" class="checkbox-beautify-square checkbox-beautify--master">
</label>
<!-- Slave checkbox -->
<label>
Orange
<input type="checkbox" name="colors[]" value="orange" class="checkbox-beautify-square checkbox-beautify--slave">
</label>
<!-- Slave checkbox -->
<label>
Brown
<input type="checkbox" name="colors[]" value="brown" class="checkbox-beautify-square checkbox-beautify--slave">
</label>
<!-- Slave checkbox -->
<label>
Black
<input type="checkbox" name="colors[]" value="black" class="checkbox-beautify-square checkbox-beautify--slave">
</label>
</form>
Helper method getOptions()
<script type="module">
import CheckboxBeautifier from './src/index.js';
const square = CheckboxBeautifier.create('Square');
// Returns all available options in a readable way.
square.getOptions();
</script>