Skip to content

Instantly share code, notes, and snippets.

@sasknot
Last active August 29, 2015 14:00
Show Gist options
  • Save sasknot/11216971 to your computer and use it in GitHub Desktop.
Save sasknot/11216971 to your computer and use it in GitHub Desktop.
CSS Grayscale
/* Apply the effect */
img.grayscale {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
filter: gray; /* IE6-9 */
-webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}
/* Disable the effect */
img.grayscale.disabled {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
-webkit-filter: grayscale(0%);
}
/* Source: http://www.karlhorky.com/2012/06/cross-browser-image-grayscale-with-css.html */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment