css for changing picture color and size
-
Hi there,
I want a picture to change from grey scale to color when hover over it. Therefor I’ve added a css class to the picture and added customized css into the stylebook section in wp 6.2:
.hover-color {
filter: grayscale(100%);
transition: all 0.2s ease-in-out;
}
.hover-color:hover {
filter: grayscale(0%);
}The picture now changes from grey to color when hover over it. But I also want to resize the picture inside the picture frame so that it appears a little more lifely when hover over it.
I see this effect often on websites but unfortunately can’t figure out how to do this?
I would be so happy and greatful if anyone could support me with a piece of code which fits to my needs :-))
Best
Chris
- The topic ‘css for changing picture color and size’ is closed to new replies.