Telegram Group Join Now
Double Range Slider Using HTML, CSS & JavaScript
Hello everyone. Welcome to today’s tutorial on Codewithrandom. We’ll learn how to make a Double Range Slider a project which is basically seen in online shopping platforms to set the range of the budget which the user requires. In Today’s session, We will use HTML, CSS, and JavaScript to complete this Double Range Slider Project.
The HTML (Hypertext Markup Language) will help us to create the structure for the list with some necessary attributes and elements to make the Double Range Slider Project. Then we will use CSS (Cascading Stylesheet) which will help us to style or design the project with suitable padding and alignment in the Double Range Slider Project. At last, we will use JS (JavaScript) which will add logic to make the Double Range Slider Project responsive from the user end.
Using CSS we present Double Range Slider Using HTML, CSS & JavaScript projects with source code available for you to copy and paste directly into your own project.
ADVERTISEMENT
I hope you have got an idea about the project.
HTML Code for Range Slider
<html lang="en"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Double Range Slider</title> <!--Google Fonts--> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap" rel="stylesheet"> <!--Stylesheet--> <link rel="stylesheet" href="style.css"> </head> <body> <div class="wrapper"> <div class="values"> <span id="range1"> 0 </span> <span> ‐ </span> <span id="range2"> 100 </span> </div> <div class="container"> <div class="slider-track"></div> <input type="range" min="0" max="100" value="30" id="slider-1" oninput="slideOne()"> <input type="range" min="0" max="100" value="70" id="slider-2" oninput="slideTwo()"> </div> </div> <!--Script--> <script src="script.js"></script> </body> </html>
First, we’ll start with creating the structure of the Double Range Slider project for that as you can see in the above code we have used all the necessary elements & attributes to set up the structure. Let us know code the CSS part to add styling and aligned the tags.
Link hover animation | Link Hover Using Html CSS
CSS Code for Range Slider
*, *:before, *:after{ padding: 0; margin: 0; box-sizing: border-box; font-family: "Poppins",sans-serif; } body{ height: 100vh; display: -ms-grid; display: grid; background-color: #3264fe; place-items: center; } .wrapper{ position: relative; width: 95vmin; background-color: #ffffff; padding: 50px 40px 20px 40px; border-radius: 10px; } .container{ position: relative; width: 100%; height: 100px; margin-top: 30px; } input[type="range"]{ -webkit-appearance: none; -moz-appearance: none; appearance: none; width: 100%; outline: none; position: absolute; margin: auto; top: 0; bottom: 0; background-color: transparent; pointer-events: none; } .slider-track{ width: 100%; height: 5px; position: absolute; margin: auto; top: 0; bottom: 0; border-radius: 5px; } input[type="range"]::-webkit-slider-runnable-track{ -webkit-appearance: none; height: 5px; } input[type="range"]::-moz-range-track{ -moz-appearance: none; height: 5px; } input[type="range"]::-ms-track{ appearance: none; height: 5px; } input[type="range"]::-webkit-slider-thumb{ -webkit-appearance: none; height: 1.7em; width: 1.7em; background-color: #3264fe; cursor: pointer; margin-top: -9px; pointer-events: auto; border-radius: 50%; } input[type="range"]::-moz-range-thumb{ -webkit-appearance: none; height: 1.7em; width: 1.7em; cursor: pointer; border-radius: 50%; background-color: #3264fe; pointer-events: auto; } input[type="range"]::-ms-thumb{ appearance: none; height: 1.7em; width: 1.7em; cursor: pointer; border-radius: 50%; background-color: #3264fe; pointer-events: auto; } input[type="range"]:active::-webkit-slider-thumb{ background-color: #ffffff; border: 3px solid #3264fe; } .values{ background-color: #3264fe; width: 32%; position: relative; margin: auto; padding: 10px 0; border-radius: 5px; text-align: center; font-weight: 500; font-size: 25px; color: #ffffff; } .values:before{ content: ""; position: absolute; height: 0; width: 0; border-top: 15px solid #3264fe; border-left: 15px solid transparent; border-right: 15px solid transparent; margin: auto; bottom: -14px; left: 0; right: 0; }
Second, comes the CSS code which we have styled for the structure we have padded as well as aligned the Double Range Slider project so that it is properly situated and doesn’t get messy with suitable CSS elements. Now, let’s code the JavaScript part to make it responsive.
Menu hover glow | Html Css Navbar Link Animation
JavaScript Code for Range Slider
window.onload = function(){ slideOne(); slideTwo(); } let sliderOne = document.getElementById("slider-1"); let sliderTwo = document.getElementById("slider-2"); let displayValOne = document.getElementById("range1"); let displayValTwo = document.getElementById("range2"); let minGap = 0; let sliderTrack = document.querySelector(".slider-track"); let sliderMaxValue = document.getElementById("slider-1").max; function slideOne(){ if(parseInt(sliderTwo.value) - parseInt(sliderOne.value) <= minGap){ sliderOne.value = parseInt(sliderTwo.value) - minGap; } displayValOne.textContent = sliderOne.value; fillColor(); } function slideTwo(){ if(parseInt(sliderTwo.value) - parseInt(sliderOne.value) <= minGap){ sliderTwo.value = parseInt(sliderOne.value) + minGap; } displayValTwo.textContent = sliderTwo.value; fillColor(); } function fillColor(){ percent1 = (sliderOne.value / sliderMaxValue) * 100; percent2 = (sliderTwo.value / sliderMaxValue) * 100; sliderTrack.style.background = `linear-gradient(to right, #dadae5 ${percent1}% , #3264fe ${percent1}% , #3264fe ${percent2}%, #dadae5 ${percent2}%)`; }
Last stage of the project the JavaScript which we added the logic and coded as per the requirement with some conditions. Let us see the Final Output of the project Double Range Slider Using HTML, CSS & JavaScript.
Final Output
We have successfully created our Double Range Slider Using HTML, CSS & JavaScript. You can use this project for your personal needs and the respective lines of code are given with the code pen link mentioned above.
If you find out this Blog helpful, then make sure to search code with random on google for Front End Projects with Source codes and make sure to Follow the Code with Random Instagram page.
Thank You And Keep Learning!!!
Code Idea – codingartist
Written By – Harsh Sawant
Code By – @harshh9