I need my object to have a different background color depending on a certain value. In particular, it is a percentage bar with, theoretically, a 100 different background colors (disregarding the nonexistent color when it's empty). The width of the bar varies from 1 to 100%, naturally. I was wondering, how could I make all the different shades automatically?
My basic idea is this: If i have a 100px-wide-image, each pixel a different color, I would try to limit the background-width to 1 pixel, use the right offset, and then repeat it. That way, it is one single CSS property, the offset, that would need to be changed via JavaScript, and there would be no need to switch through 100 different classes. Sadly, though, that is not how background-size, background-position and background-repeat work. So my question is this: What possibilities do I have to make it simple and dependent on not more than 3 numeric CSS properties that are linearly dependent on the percentage?
Thanks in advance.
EDIT: I have had an idea that I tried, and it works.
I created an image in photoshop that is exactly 100 pixels high and 1 pixel wide. Each pixel represents the color for its percentage. So, pixel 0 would be for 1%, and pixel 99 for 100%. I then stretch that image vertically by at least the height of the progress bar. If it is 20px high, I stretch the image by at least the factor 20. The stretching needs to be done using the nearest-neighbor algorithm in order to prevent gradients where there should be none; each pixel simply needs to be stretched vertically by the factor 20, so sharp edges appear every 20 pixels.
That resulting image I use as the background image that is only repeated horizontally. Using the image-position, I set background-position: 0 -[(percentage-1)*20]px and width: [percentage]%. (The part in square brackets is calculated using PHP or JavaScript or whatever). And that's pretty much it. Whenever the percentage changes, I simply need to change these two values, and the background adapts automatically, regardless of its colors.
