0.0.5 • Published 7 years ago

@baianat/slider v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

Range slider

ES6 range slider with gradient color range. ES6 range slider extension with gradient color range for Base framework.

Getting Started

Installation

You can install the slider as part of base.extensions.

npm install @baianat/base.extensions

# or using yarn
yarn add @baianat/base.extensions

If you want the standalone version.

npm install @baianat/slider

yarn add @baianat/slider

Include necessary files

<head>
  <link rel="stylesheet" href="dist/css/slider.css">
</head>
<body>
    ...
    <script type="text/javascript" src="dist/js/slider.js"></script>
</body>

HTML Layout

You need an input element to print the output value in it.

<input id="slider-1">

<script>
  let mySlider1 = new Slider('#slider-1', {
    gradient: ['#FFE344', '#38E4B7'],
    min: 0,
    max: 100,
    step: 1,
    value: 60
  });
</script>

You can also add value, min, max and step values using input attributes.

<input id="slider-2"  min="-10" max="10" value="0" step="1">

<script>
  let mySlider2 = new Slider('#slider-2');
</script>

Settings

PROPERTIESDEFAULTDESCRIPTION
gradientnullslider gradient colors array
classesnullclasses to add to range slider
colorCodefalseshow color code instead of value
editablefalsecan input the slider value directly
labeltrueshow/hide value label
min0minimum slider value
max10maximum slider value
step1limit the increments value
value0start value

Methods

You can call method on Slider instance.

const mySlider = new Slider('#slider');
mySlider.selectColor('#ff00ff');
METHODARGUMENTDESCRIPTION
updateNumber value, Bool mutechange the slider current value
newGradientArray newGradientchange the current slider gradient

License

MIT

Copyright (c) 2017 Baianat

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

8 years ago