• 0

Dynamically change the color of an HTML range element


Question

I was wondering if there is a way to dynamically change the color of an HTML range element. For example, let's say I have 3 sliders (1 for red, 1 for green, 1 for blue). I want to change the intensity of each color on the slider based on the value of the slider. An example of what I have so far is located at http://jsfiddle.net/aa5kh/ 

7 answers to this question

Recommended Posts

  • 0

Does any body have any ideas regarding this issue? 

 

EDIT: Oops! I just noticed that the fiddle isn't there for some reason. I copied the url while I was there, but I guess I had to save it. I will recreate it. Sorry for the confusion!

  • 0

My quick idea: http://jsfiddle.net/bataA/7/

The sliders change the text color.

 

Notice that I used rgb() css property which is not much compatible with old browsers. But this is the easiest I think.

 

edit: it looks like in Chrome the color only updates when I let go the mouse button, but in IE 11 it updates as the slider moves.

 

edit2: I modified the jquery so it updates the color in Chrome immediatelly as well. http://jsfiddle.net/bataA/15/

  • 0

HTML :

<input type="range" id="red" min="0" max="255" />
<input type="range" id="green" min="0" max="255" />
<input type="range" id="blue" min="0" max="255" />
<input type="text" id="color" />

 

CSS :

input[type=range]::-webkit-slider-thumb {
     -moz-appearance: none;
     border-radius: 20px;
     background-color: #FFF;
     box-shadow:
        inset 0 0 16px #B2B200,
        inset 16px 0 20px #FFFF33;
     border: 2px solid #292908;
     height: 20px;
     width: 20px;
}

#color {
width: 100px;
background-color: black;
}
 

JScript :

var r = 0;
var g = 0;
var b = 0;

$('input[type=range]').each(function() {
    $(this).bind('change', function() {
        r = $('#red').val().toString(16);
        g = $('#green').val();
        b = $('#blue').val();
        
        var colorrgb = r+","+g+","+b;
        
        $("#color").css("background-color", "rgb("+colorrgb+")");
        
    });
});

  • 0
  On 21/05/2014 at 12:58, nyolc8 said:

If I missunderstood you and you actually want to change the sliders colors, then here it is(may look messy but works): http://jsfiddle.net/bataA/45/

 

That is very close to what I want, but I want to change the thumb within the control to that color. Thank you for your help so far. I appreciate it!

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Pete Hegseth would like a word. I doubt that fiasco stops at Signal.
    • Minecraft's big graphics overhaul is now available by Taras Buria It is a big day for Minecraft fans. Mojang has released the long-anticipated graphics overhaul and a new content drop. The Chase the Skies update is now available in Minecraft on all supported platforms, while the Vibrant Visuals overhaul is currently available in Minecraft Bedrock Edition only (it is coming to Java Edition later). Mojang planned a visual update for Minecraft eight years ago, but the Super-Duper Graphics project was cancelled due to performance and other issues. Now, Mojang is ready to try again. This time, however, the update has been successfully delivered to gamers. The reworked graphics in Minecraft include directional lighting, volumetric fog, improved shadows, reflections, godrays, and a lot more. Previously, stuff like this required Minecraft RTX or third-party shaders, but now, the game has improved graphics natively. The update is available across many devices, and you do not need a high-end PC to run it. The upgrade is available on the following systems: Android with Adreno 640, Mali-G68, Mali-G77, Xclipse 530, and higher. iPhones and iPads with the A12 or M1 processor and higher. Any PC with DirectX 12 support. PlayStation 4 and PlayStation 5. Xbox One and Xbox Series X|S. You can enable Vibrant Visuals in display settings. Note that while the upgrade is compatible with many devices, performance still takes a hit. However, you can improve your experience by tweaking different parts of the visual overhaul in graphics settings. Another thing worth noting is that splitscreen multiplayer does not currently support Vibrant Visuals, just like worlds and texture packs. As for the Chase the Skies update, it introduces happy ghasts, new music disks, locator bar for players, environmental fog in the overworld, new background music, and all sorts of small gameplay changes, such as the ability to craft a saddle and a leade, horse taming with carrots, and more. You can read more about the latest Minecraft update in a post on the official website.
    • “We know Biden and Hunter and many in that administration profited tremendously from the support of Ukraine. Nobody talks about that.” Every single right wing talking head has been talking about that and Hunter’s laptop since 2022. Republicans could not even make the case that involved Joe through congressional oversight . ”We do not know what his true motives are other than what we see.” Maybe the way he behaves and talks should show you his true motives (not everything is hidden or a conspiracy). He is a lying bigot who cares about money and power.
    • Libertarian here, I am not following you. What is the difference between the current politics and a bunch of monkeys throwing poop each other?.
  • Recent Achievements

    • Reacting Well
      Cole Multipass earned a badge
      Reacting Well
    • Reacting Well
      JLP earned a badge
      Reacting Well
    • Week One Done
      Rhydderch earned a badge
      Week One Done
    • Experienced
      dismuter went up a rank
      Experienced
    • One Month Later
      mevinyavin earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      693
    2. 2
      ATLien_0
      274
    3. 3
      Michael Scrip
      216
    4. 4
      +FloatingFatMan
      189
    5. 5
      Steven P.
      146
  • Tell a friend

    Love Neowin? Tell a friend!