Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create range silder with marker and change color of filled range?

I already did the work to some extent as shown below. How to achieve something like this range slider?

range slider

.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */ 
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}
<div class="slidecontainer">
  <input type="range" min="1" max="100" value="50" class="slider" id="myRange">
</div>
like image 914
Hash Avatar asked Mar 31 '19 03:03

Hash


People also ask

How do I change the color of my slider range?

If the general appearance of the slider is fine, but the default blue color (in Chrome) needs to fit a theme color, apply a filter: hue-rotate(); to the input[type="range"] element. Other filters can be used. Some even change the background color of the slider.

How do I create a vertical range slider in html?

For Chrome, use -webkit-appearance: slider-vertical . For IE, use writing-mode: bt-lr . For Firefox, add an orient="vertical" attribute to the html.


1 Answers

If you want the exact output as in the question go for this, tested on Firefox and Chrome.

const _R = document.querySelector('[type=range]');
    _R.style.setProperty('--val', +_R.value);
    _R.style.setProperty('--max', +_R.max);
    _R.style.setProperty('--min', +_R.min);

    document.documentElement.classList.add('js');

    _R.addEventListener('input', e => {
        _R.style.setProperty('--val', +_R.value);
    }, false);
input:focus{
        outline: none;
    }
    .slider {
        -webkit-appearance: none;
        --range: calc(var(--max) - var(--min));
        --ratio: calc((var(--val) - var(--min))/var(--range));
        --sx: calc(.5*1.5em + var(--ratio)*(100% - 1.5em));
        margin: 0;
        padding: 0;
        width: 100%;
        height: 1.5em;
        background: transparent;
        font: 1em/1 arial, sans-serif;
        border: none;
    }
    .slider, .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
    }
    .slider::-webkit-slider-runnable-track {
        box-sizing: border-box;
        border: none;
        width: 12.5em;
        height: 0.5em;
        background: #ccc;
    }
    .js .slider::-webkit-slider-runnable-track {
        background: linear-gradient(#7b1c1a, #7b1c1a) 0/var(--sx) 100% no-repeat #ccc;
    }
    .slider::-moz-range-track {
        box-sizing: border-box;
        border: none;
        height: 0.5em;
        background: #ccc;
    }
    .slider::-ms-track {
        box-sizing: border-box;
        border: none;
        width: 12.5em;
        height: 0.5em;
        background: #ccc;
    }
    .slider::-moz-range-progress {
        height: 0.5em;
        background: #7b1c1a;
    }
    .slider::-ms-fill-lower {
        height: 0.5em;
        background: #7b1c1a;
    }
    .slider::-webkit-slider-thumb {
        margin-top: -0.550em;
        box-sizing: border-box;
        border: none;
        width: 1.5em;
        height: 1.5em;
        border-radius: 50%;
        background: #7b1c1a;
    }
    .slider::-moz-range-thumb {
        box-sizing: border-box;
        border: none;
        width: 1.5em;
        height: 1.5em;
        border-radius: 50%;
        background: #7b1c1a;
    }
    .slider::-ms-thumb {
        margin-top: 0;
        box-sizing: border-box;
        border: none;
        width: 1.5em;
        height: 1.5em;
        border-radius: 50%;
        background: #7b1c1a;
    }
    .slider::-ms-tooltip {
        display: none;
    }
    #tickmarks {
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
    }

    #tickmarks p {
        position: relative;
        display: flex;
        justify-content: center;
        text-align: center;
        width: 1px;
        background: #D3D3D3;
        height: 10px;
        line-height: 40px;
        margin: 0 0 20px 0;
    }
<div class="slidecontainer">
    <input type="range" min="5" max="20" value="10" step='2.5' class="slider" id="myRange" list='tickmarks'>
    <div id="tickmarks">
        <p>5</p>
        <p>7.5</p>
        <p>10</p>
        <p>12.5</p>
        <p>15</p>
        <p>17.5</p>
        <p>20</p>
    </div>
</div>

A typical cross browser solution,

/*Chrome*/
    @media screen and (-webkit-min-device-pixel-ratio:0) {
        input[type='range'] {
          overflow: hidden;
          width: 100%;
          -webkit-appearance: none;
          background-color: #d3d3d3;
        }
        
        input[type='range']::-webkit-slider-runnable-track {
          height: 25px; /* Specified height */
          -webkit-appearance: none;
          color: #13bba4;
          margin-top: -1px;
        }
        
        input[type='range']::-webkit-slider-thumb {
           width: 25px; /* Set a specific slider handle width */
          -webkit-appearance: none;
          height: 25px; /* Specified height */
          cursor: ew-resize;
          background: #434343;
          box-shadow: -100vw 0 0 100vw  #4CAF50;
        }
    
    }
    /** FF*/
    input[type="range"]::-moz-range-progress {
      background-color: #4CAF50; 
    }
    input[type="range"]::-moz-range-track {  
      background-color: #d3d3d3;
    }
    /* IE*/
    input[type="range"]::-ms-fill-lower {
      background-color: #4CAF50; 
    }
    input[type="range"]::-ms-fill-upper {  
      background-color: #d3d3d3;
    }    
<div class="slidecontainer">
  <input type="range" min="1" max="100" value="50" class="slider" id="myRange">
</div>
like image 169
Shoyeb Sheikh Avatar answered Sep 22 '22 23:09

Shoyeb Sheikh