Last active
August 29, 2015 14:08
-
-
Save roshanca/f6303cf340eb7c0adb21 to your computer and use it in GitHub Desktop.
网站变灰 CSS
This file contains hidden or 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
| 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