Provides a behavior for something with a minimum and maximum value
npm install @polymer/iron-range-behavior


IronRangeBehaviorIronRangeBehavior provides the behavior for something with a minimum to
maximum range.
See: Documentation,
Demo.
```
npm install --save @polymer/iron-range-behavior
`js
import {PolymerElement} from '@polymer/polymer/polymer-element.js';
import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {IronRangeBehavior} from '@polymer/iron-range-behavior/iron-range-behavior.js';
class SimpleRange extends mixinBehaviors(IronRangeBehavior, PolymerElement) {
static get template() {
return html
[[ratio]]%
;
}
}customElements.define('simple-range', SimpleRange);
`Then, in your HTML:
`html
`Contributing
If you want to send a PR to this element, here are the instructions for running
the tests and demo locally:
$3
`sh
git clone https://github.com/PolymerElements/iron-range-behavior
cd iron-range-behavior
npm install
npm install -g polymer-cli
`$3
`sh
polymer serve --npm
open http://127.0.0.1:/demo/
`$3
`sh
polymer test --npm
``