Fixed slider color gradient
This commit is contained in:
parent
8faa653826
commit
6c3e607720
2 changed files with 8 additions and 8 deletions
|
@ -30,16 +30,16 @@ var slider = document.getElementById("bri{{LIGHT_NUMBER_DEC}}");
|
|||
var pwm = document.getElementById("light{{LIGHT_NUMBER_DEC}}_pwm");
|
||||
if (lightNumber === 1) {
|
||||
slider.style.background = "linear-gradient(to bottom, " + rgb2Hex(31, 119, 180) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, " + rgb2Hex(31, 119, 180) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, white, " + rgb2Hex(31, 119, 180) + ")";
|
||||
} else if (lightNumber === 2) {
|
||||
slider.style.background = "linear-gradient(to bottom, " + rgb2Hex(255, 127, 14) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, " + rgb2Hex(255, 127, 14) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, white, " + rgb2Hex(255, 127, 14) + ")";
|
||||
} else if (lightNumber === 3) {
|
||||
slider.style.background = "linear-gradient(to bottom, " + rgb2Hex(44, 160, 44) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, " + rgb2Hex(44, 160, 44) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, white, " + rgb2Hex(44, 160, 44) + ")";
|
||||
} else if (lightNumber === 4) {
|
||||
slider.style.background = "linear-gradient(to bottom, " + rgb2Hex(214, 39, 40) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, " + rgb2Hex(214, 39, 40) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, white, " + rgb2Hex(214, 39, 40) + ")";
|
||||
}
|
||||
</script>
|
||||
</div>
|
||||
|
|
|
@ -31,16 +31,16 @@
|
|||
var pwm = document.getElementById("light{{LIGHT_NUMBER_DEC}}_pwm");
|
||||
if (lightNumber === 1) {
|
||||
slider.style.background = "linear-gradient(to bottom, " + rgb2Hex(31, 119, 180) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, " + rgb2Hex(31, 119, 180) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, white, " + rgb2Hex(31, 119, 180) + ")";
|
||||
} else if (lightNumber === 2) {
|
||||
slider.style.background = "linear-gradient(to bottom, " + rgb2Hex(255, 127, 14) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, " + rgb2Hex(255, 127, 14) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, white, " + rgb2Hex(255, 127, 14) + ")";
|
||||
} else if (lightNumber === 3) {
|
||||
slider.style.background = "linear-gradient(to bottom, " + rgb2Hex(44, 160, 44) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, " + rgb2Hex(44, 160, 44) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, white, " + rgb2Hex(44, 160, 44) + ")";
|
||||
} else if (lightNumber === 4) {
|
||||
slider.style.background = "linear-gradient(to bottom, " + rgb2Hex(214, 39, 40) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, " + rgb2Hex(214, 39, 40) + ", white)";
|
||||
pwm.style.background = "linear-gradient(to right, white, " + rgb2Hex(214, 39, 40) + ")";
|
||||
}
|
||||
</script>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue