![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@spreadtheweb/multi-range-slider
Advanced tools
Simple, small and fast vanilla JavaScript multi range slider without dependencies, with ability to have multiple values and points to slide
Simple, small and fast vanilla JavaScript multi range slider without dependencies, with ability to have multiple values and points to slide
I wanted range slider to use in my project but there were no sliders with multiple points and values. Some libraries have it but they were either more complex or there was no ability to extract it.
You can install package from npm registry using:
npm i @spreadtheweb/multi-range-slider
Or by directly inserting it into html using unpkg link:
<script src="https://unpkg.com/@spreadtheweb/multi-range-slider@1.0.2/dist/range-slider.main.min.js"></script>
You can call constractor and pass selector of your html div element and additional options. Returns slider instance.
new RangeSlider(selector: text, options?: {})
You can import it into your module:
import RangeSlider from '@spreadtheweb/multi-range-slider';
new RangeSlider(".range-slider-1")
.onChange(val => console.log(val));
Or you can use it directly in your html:
<head>
...
<script src="https://unpkg.com/@spreadtheweb/multi-range-slider@1.0.2/dist/range-slider.main.min.js"></script>
</head>
<body>
<div class="slider"></div>
<script>
let slider = new RangeSlider('.slider')
</script>
</body>
Property | Type | Default | Description |
---|---|---|---|
values | number[] | [25, 75] | Initial Value |
step | number | 1 | incement of value per point move |
min | number | 0 | possible min value |
max | number | 100 | possible max value |
colors | Object {points: string[] or string, rail: string, tracks: string[] or string} | {points: "rgb(25, 118, 210)", rail: "rgba(25, 118, 210, 0.4)", tracks: "rgb(25, 118, 210)"} | color of points, rail and tracks. Points ant tracks can have array of colors for relateive point/track in order |
pointRadius | number | 15 | radius of point in px |
railHeight | number | 5 | height of rail in px |
trackHeight | number | 5 | height of track in px |
Method name | Usage | Usage |
---|---|---|
onChange | slider.onChange(values => console.log(values)) | calls received callback and pass current values when point slide finishes |
See example folder in git repository
FAQs
Simple, small and fast vanilla JavaScript multi range slider without dependencies, with ability to have multiple values and points to slide
The npm package @spreadtheweb/multi-range-slider receives a total of 0 weekly downloads. As such, @spreadtheweb/multi-range-slider popularity was classified as not popular.
We found that @spreadtheweb/multi-range-slider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.