Dealing with the problem of notes details turning gray on web pages

Dealing with the problem of notes details turning gray on web pages
1. In IE, if relative positioning is used, that is, <div style="background:url();position:relative;"></div>, the background image cannot be grayed out.

2. In Firefox or Google Chrome, if the className of an element is changed through js, the changed className style cannot be displayed because the js file directly adds the style to the element after the web page is loaded, resulting in the inability to switch normally.

The first solution is to use the code html { filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); } in IE. It does not work in Firefox or other browsers.

I don't know the second solution either. In order to switch normally, I can only reset the div in this area, that is, not let it gray out. The code is as follows:

grayscale.reset(div);


Related information: https://www.jb51.net/article/23167.htm

<<:  How to configure whitelist access in mysql

>>:  How to use translate and transition in CSS3

Recommend

Why node.js is not suitable for large projects

Table of contents Preface 1. Application componen...

Web design skills: iframe adaptive height problem

Maybe some people have not come across this issue ...

Solve the problem of Docker starting Elasticsearch7.x and reporting an error

Using the Docker run command docker run -d -p 920...

MySQL 8.0.20 compressed version installation tutorial with pictures and text

1. MySQL download address; http://ftp.ntu.edu.tw/...

Special commands in MySql database query

First: Installation of MySQL Download the MySQL s...

Detailed explanation of adding click event in echarts tooltip in Vue

Table of contents need Workaround 1. Set tooltip ...

Pure CSS3 realizes the effect of div entering and exiting in order

This article mainly introduces the effect of div ...

Basic notes on html and css (must read for front-end)

When I first came into contact with HTML, I alway...

Uncommon but useful tags in Xhtml

Xhtml has many tags that are not commonly used but...

Vue data two-way binding implementation method

Table of contents 1. Introduction 2. Code Impleme...

How to set the width and height of html table cells

When making web pages, you often encounter the pr...

Docker connects to the host Mysql operation

Today, the company project needs to configure doc...

How to install theano and keras on ubuntu system

Note: The system is Ubuntu 14.04LTS, a 32-bit ope...