Droga Programisty : Szybkie Palce : CSS image button
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
img { | |
/* dodatkowy filtr dla elementu, tutaj chcemy zeby byl prawie czarnobialy (usuwamy kolory) */ | |
filter: grayscale(50%); | |
... | |
} | |
img.active:hover { | |
/* dodatkowy filtr elementu, teraz chcemy zeby byl kolorowy */ | |
filter: grayscale(0%); | |
} | |
img.inactive { | |
/* dodatkowy filtr elementu, teraz chcemy zeby byl czarnobialy */ | |
filter: grayscale(100%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment