Skip to content

Instantly share code, notes, and snippets.

@roshanca
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save roshanca/f6303cf340eb7c0adb21 to your computer and use it in GitHub Desktop.

Select an option

Save roshanca/f6303cf340eb7c0adb21 to your computer and use it in GitHub Desktop.
网站变灰 CSS
body {
-webkit-filter:grayscale(100%);
-moz-filter:grayscale(100%);
-ms-filter:grayscale(100%);
-o-filter:grayscale(100%);
filter:grayscale(100%);
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
filter:gray;
-webkit-transform: translateZ(0); /* 解决在 Retina 屏幕下显示变模糊的问题 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment