2.1.0 • Published 9 years ago

openmusic-slider v2.1.0

Weekly downloads
3
License
Apache 2
Repository
github
Last release
9 years ago

openmusic-slider

a not ultra fancy slider web component, which shows the current value too

It it essentially an input[type=range] and a span showing the input's current value. That's all it is.

install

npm install openmusic-slider

usage

require('openmusic-slider')('openmusic-slider');

var coolSlider = document.createElement('openmusic-slider');
document.body.appendChild(coolSlider);

properties

  • min
  • max
  • value
  • step

These properties can also be specified as attributes in HTML:

<openmusic-slider min="10" max="100" step="2" value="20"></openmusic-slider>