An open API service indexing awesome lists of open source software.

https://github.com/nju33/rangebar

💊 Elements like input[type=range]
https://github.com/nju33/rangebar

form input library pure-javascript range

Last synced: 11 months ago
JSON representation

💊 Elements like input[type=range]

Awesome Lists containing this project

README

          

# Rangebar

💊 Elements like input[type=range]

![screenshot](https://github.com/nju33/rangebar/raw/master/images/screenshot.gif?raw=true)

## Install or Download

```sh
yarn add rangebar
npm i -S rangebar
```

Or access to [releases page](https://github.com/nju33/rangebar/releases).
Then, download the latest version.

## Usage

First, if you read as a separate file

```html

```

```js
import Rangebar from 'rangebar';

new Rangebar({
target: getElementById('target')
data: {
style: {
// defualts
len: '8em',
width: '4px',
barBackgroundColor: '#222',
buttonBackgroundColor: '#cb1b45'
},
horizontal: true, // or false (vertical) (default: true)
min: 0, // minimum value (defualt: 0)
max: 100, // maximum value (default: 100)
buttons: [
// specify init position (required)
10,
20,
30
],
onChange(values) {
console.log(values.length) // 3, This returns the new value of this.buttons
}
}
});
```

### Example

- `test/fixtures/index.js`
- `example/webpack/index.js`

## LICENSE

The MIT License (MIT)

Copyright (c) 2017 nju33