You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

bootstrap-double-slider

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bootstrap-double-slider

bootstrap style multi-range slider

1.1.1
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

bss-range-slider

Bootstrap Style Multi-Range Slider

!!! PLEASE DON'T USE VERSIONS BELOW 1.1 SINCE THE USAGE HAS CHANGED !!!

Licence: MIT Licence
full use free of charge

Usage:

html:

<div class="bs-multi-range">
    <div class="track">
        <div class="thumb upper"></div>
        <div class="thumb lower" style="--thumb-color: yellow"></div>
        <div class="track-diff"></div>
    </div>
</div>

(track-diff is optional)

Thumb color can be changed via CSS variable

js:

import { DoubleSlider } from "bootstrap-double-slider";
new DoubleSlider(el: HTMLElement | string, min: number, 
    max: number, thumbSize: number, autoUpdate: boolean, 
    emitEvents: boolean, clickTrack: boolean)

min, max: position the sliders are at initialisation (in percent) (default 0, 100)
thumbSize: only modify when overwriting the --thumb-size css variable and set it to the value in px (default: 16)
autoUpdate: if set to true (default) the boundingClientRect gets updated every time values are changed (via drag/mouse or programmatically doesn't matter). Only set to false if you are sure your element never changes
emitEvents: if set to true (default) a "change" event gets emitted
clickTrack: if set to true (default) a click on the track element leads to a value change. The closest thumb will switch to clicked position

Keywords

slider

FAQs

Package last updated on 07 Jun 2022

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