0.0.4 ā€¢ Published 7 years ago

rangebar v0.0.4

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

Rangebar

šŸ’Š Elements like inputtype=range

screenshot

Install or Download

yarn add rangebar
npm i -S rangebar

Or access to releases page. Then, download the latest version.

Usage

First, if you read as a separate file

<script src="/path/tp/rangebar.js"></script>
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 nju33.ki@gmail.com

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago