Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a class called "button", I simply use it for all hover elements. Most of my buttons are black (background-color), and the .button:hover changes the background-color value of the items to gray.

However, some of my buttons have random colors so they lose the effect when their background-color changes to light gray. for this reason, I would like to change the "satauration" value of the hovered item instead of modifying the whole color. That way, the hover effect will base on the base color..

I was thinking... if it is possible to change the "saturation" value (only) of the background-color so that my hover effect will still be useful for random colors.

share|improve this question
2  
You can do this in JavaScript, get current background value and change only its S part or use CSS by adding some overlay with opacity, like rgba(0, 0, 0, .6) – Wojciech Bednarski Jan 25 at 3:51
Yes, this looks like a good answer! I was only wondering if it's possible css-only.. – Zettam Jan 25 at 4:04

2 Answers

up vote 1 down vote accepted

Using filter currently seems to only work for webkit-based browsers..

-webkit-filter: saturate(3);
filter: saturate(3);

Demo | Source

Coupling the saturation filter with brightness seems to have the most effect, with the black being visibly affected

-webkit-filter: brightness(0.2) saturate(3);
filter: brightness(0.2) saturate(3);

Demo | Source

Additional demo: http://html5-demos.appspot.com/static/css/filters/index.html

share|improve this answer
Thank you, this is great! I wish this works for all browsers in the close future! – Zettam Jan 28 at 14:28

There are two solutions for this problem:

First, use a transparent png with a white to transparent gradient. On onHover, apply the image over the button. I haven't tried it but it looks promising.

Second, use a css inset dropshadow. With the parameters set correctly, you can easily manage the gradient effect.

You can also use rgba(r,g,b,a) for making changes to the underlying button color. But remember that the text value of the button will also get affected, giving you issues of usability.

share|improve this answer
2  
button-red - How do you know this button will be red in the future? It's better to use semantic class names. – Wojciech Bednarski Jan 25 at 3:56
2  
Agree with @WojciechBednarski - names like "button-red" are exactly what you should not do. Better to name based on button rule/purpose. – Tim Medora Jan 25 at 3:58
1  
yes a button-red condition is what I don't want to use as well. – Zettam Jan 25 at 4:03
My bad. I should have typed "button red" instead of "button-red". – shash7 Jan 25 at 4:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.