Custom Range Slider For Webkit Browsers – webkit-input-range-fill-lower.js

Category: Form , Javascript | May 20, 2020
Author:samuelcarreira
Views Total:796 views
Official Page:Go to website
Last Update:May 20, 2020
License:MIT

Preview:

Custom Range Slider For Webkit Browsers – webkit-input-range-fill-lower.js

Description:

A simple JavaScript library for the native slider input that allows you to customize the lower portion of the track (left of the thumb) of a range slider.

How to use it:

1. Download and import the JavaScript webkit-input-range-fill-lower.js into the document.

<script src="dist/webkit-input-range-fill-lower.js"></script>

2. Attach the function to the <input type=”range” /> element and determine the background color of the lower portion of the track.

<input id="example" type="range" min="0" max="100" value="9" />
new WebkitInputRangeFillLower({
    selectors: ['example'],
    color: '#222'
});

3. The color option also accepts gradients.

new WebkitInputRangeFillLower({
    selectors: ['example'],
    gradient: 'rgba(247, 4, 32, 0.87), rgb(0, 9, 242)'
});

You Might Be Interested In:


Leave a Reply