convert Hsl to rgb and hex
问题 I need a color converter to convert from hsl to rgb and hex value. I am going to do similar like this. I am using jquery and jquery ui range slider for this. Here is my code: $(function() { $( "#hsl_hue_range" ).slider({ min: 0, max: 100, value: 0, range: false, animate:"slow", orientation: "horizontal", slide: function( event, ui ) { var hsl_hue = ui.value; } }); }); $(function() { $( "#hsl_saturation_range" ).slider({ min: 0, max: 100, value: 0, range: false, animate:"slow", orientation: