How to Create Round Range Slider With Jquery

    Jan 15, 2016       by Pankaj Kumar
round-range-slider.jpg

Today we will create a demo for round range slider with jquery plugin. With round slider, It will also support quarter, half and pie circle shapes. It is very good way for showing some value in pictorial form.

 

Let's proceed step by step to complete the task:

1.  Add all the required libraries:

<link href="roundslider.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="roundslider.min.js"></script>
 
 

Now we have divs for showing three different round range slider, each with unique id:

 
<div id="roundslider1" class="roundslider"></div>
<div id="roundslider2" class="roundslider"></div>
<div id="roundslider3" class="roundslider"></div>
 

At the end we have jquery code to create the slider as per the value passed from here.

 

<script>
$("#roundslider1").roundSlider({
    sliderType: "default",
    value: 50
});

$("#roundslider2").roundSlider({
    sliderType: "min-range",
    value: 50
});

$("#roundslider3").roundSlider({
    sliderType: "range",
    value: "20,50"
});
</script>

 

Finally our task done for creating the demo for round slider with query plugin.

 

Let me know your thoughts over the email demo.jsonworld@gmail.com. I would love to hear them and If you like this article, share with your friends.

You can download complete code from here. Download Code


WHAT'S NEW

Find other similar Articles here: