Summary of a CSS code that makes the entire site gray

Summary of a CSS code that makes the entire site gray

In order to express the deep condolences of people of all ethnic groups across the country to the martyrs and victims of the fight against the COVID-19 epidemic, the State Council issued an announcement today, deciding to hold a national mourning event on April 4, 2020 (tomorrow). During this period, flags were flown at half-mast throughout the country and in embassies abroad, public entertainment activities were suspended nationwide, and starting at 10 a.m. on April 4, the people of the country observed a three-minute silence, cars, trains, and ships sounded their horns, and air defense alarms sounded.

When I thought about the fact that the entire website turned completely gray when I visited it on the day of silence in the past, I thought that if I started development and design modification immediately, it would consume a lot of time and energy. Would there be CSS that could directly process all the elements and turn them gray? Then I thought of the CSS3 filter, and it also confirmed the feasibility of this idea.

filter: grayscale can adjust the grayscale value of an element

.gray-filter {
    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,<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 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1);
}

Actual Combat

Take Station B as an example:

Under normal circumstances, after the navigation bar of Station B slides down, it is fixed at the top of the page.

But if you add this CSS to the body, the following will happen:

You can find that it is no longer fixed at the top of the page, but has gone outside the screen. The little TV man in the lower left corner of the screen has also moved to the upper half of the page. Why does this happen?

I went to Google to look up relevant information and found:

When a filter style is specified and its value is not none, if there are elements with position absolute or fixed among the child elements of the element to which the style is applied, a new container will be created for these elements, so that the positioning benchmark of these absolutely or fixedly positioned elements is relative to the newly created container.

We can infer that fixed is positioned relative to the root container of HTML. If a filter is set on the body, a new positioning reference will be created. When the page scrolls, the body is scrolled out of the screen, and the fixed of all descendant elements in the body will produce unexpected effects.

How to solve it?

Solution 1

A method that affects the entire site: We can apply this style to the root element html. Even if a new positioning reference element is created, it will not have an unexpected impact on the descendant elements.

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,<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 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1);
}

Effect:

Solution 2

If the entire site is not grayed out, we can add the elements that need to use the filter separately

<html>
    <body>
        <div class="gray-filter"></div>
    </body>
</html>

<style>
.fixed {
    position: fixed;
    top: 100px;
    left: 100px;
    height: 100px;
    width: 100px;
    background-color: #f00;
}
.gray-filter {
    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,<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 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1);
}
</style> 

This is the end of this article about a CSS code summary that makes the entire site grayed out. For more relevant CSS site-wide graying content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  Using js to implement simple switch light code

>>:  MySQL Series 3 Basics

Recommend

IIS7~IIS8.5 delete or modify the server protocol header Server

Requirements: Remove HTTP response headers in IIS...

A brief introduction to MySQL database optimization techniques

A mature database architecture is not designed wi...

How to install and deploy MySQL 8.0 under CentOS8

MySQL 8 official version 8.0.11 has been released...

Solution to garbled display of Linux SecureCRT

Let's take a look at the situation where Secu...

Detailed explanation of MySql data type tutorial examples

Table of contents 1. Brief Overview 2. Detailed e...

MySQL not null constraint case explanation

Table of contents Set a not null constraint when ...

Analysis of MySQL lock mechanism and usage

This article uses examples to illustrate the MySQ...

Zabbix redis automatic port discovery script returns json format

When we perform automatic discovery, there is alw...

HTML optimization techniques you must know

To improve the performance of web pages, many dev...

Small details of web front-end development

1 The select tag must be closed <select><...

Example of Vue routing listening to dynamically load the same page

Table of contents Scenario Analysis Development S...

Detailed explanation of the principles of Vue's responsive system

Table of contents The basic principles of Vue'...

How to dynamically modify the replication filter in mysql

MySQL dynamically modify replication filters Let ...