New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@spreadtheweb/multi-range-slider

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@spreadtheweb/multi-range-slider

Simple, small and fast vanilla JavaScript multi range slider without dependencies, with ability to have multiple values and points to slide

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Multi Range Slider

Simple, small and fast vanilla JavaScript multi range slider without dependencies, with ability to have multiple values and points to slide

illustration

WHY

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.

Installation

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>

Usage

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>

Tooltip Handler

Use the tooltipHandler function to modify the content displayed on the tooltip.

<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', {
            tooltipHandler: function (content) {
                return '$ ' + content
            }
        })
    </script>
</body>

Options

PropertyTypeDefaultDescription
valuesnumber[][25, 75]Initial Value
stepnumber1incement of value per point move
minnumber0possible min value
maxnumber100possible max value
colorsObject {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
pointRadiusnumber15radius of point in px
railHeightnumber5height of rail in px
trackHeightnumber5height of track in px
tooltipHandlerfunctionnullfunction to modify the content of the tooltip

Methods

Method nameUsageUsage
onChangeslider.onChange(values => console.log(values))calls received callback and pass current values when point slide finishes

Examples

See example folder in git repository

Keywords

FAQs

Package last updated on 26 Jan 2025

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc