Home > Web Front-end > JS Tutorial > Example of turning the entire webpage gray and white (compatible with all browsers)_javascript skills

Example of turning the entire webpage gray and white (compatible with all browsers)_javascript skills

WBOY
Release: 2016-05-16 17:35:58
Original
1798 people have browsed it
复制代码 代码如下:

html{
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: url("data:image/svg xml;utf8,


#grayscale");  filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
-webkit-filter: grayscale(1);
}
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template