Skip to content

Instantly share code, notes, and snippets.

@mingcheng
Created August 24, 2012 10:48
Show Gist options
  • Select an option

  • Save mingcheng/3449022 to your computer and use it in GitHub Desktop.

Select an option

Save mingcheng/3449022 to your computer and use it in GitHub Desktop.
兼容所有浏览器的图片灰度滤镜
.gray {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment