Various ways to modify the background image color using CSS3

Various ways to modify the background image color using CSS3

CSS3 can change the color of pictures. From now on, you no longer need to design multiple pictures, and you can modify them at any time. The following is a brief introduction on how to change the color of the background image in CSS3.

Method 1 : Using the drop-shadow in the CSS3 filter

The code is as follows:

<style>
.icon{
    display: inline-block;
    width: 180px;
    height: 180px;
    background: url('img/XXX.png') no-repeat center cover;
    overflow: hidden;
}
.icon:after{
    content: '';
    display: block;
    height: 100%;
    transform: translateX(-100%);
    background: inherit;
    filter: drop-shadow(144px 0 0 #fff); //Color value to be modified}
</style>
 
<i class="icon"></i>

illustrate:

The drop-shadow filter can add a shadow to the non-transparent area of ​​an element or image.

Applying a non-blurred shadow to a transparent PNG icon is equivalent to generating an icon of another color.

Then use overflow:hidden and displacement processing to hide the original icon

Mix-blend-mode value: [Except the last 3, the effect is roughly the same as PS]

: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

Method 2 : Using CSS3's mix-blend-mode and background-blend-mode

The code is as follows:

<style>
.icon{
    display: inline-block;
    width: 180px;
    height: 180px;
    background-image: url($'img/XXX.png'), linear-gradient(#f00, #f00);
    background-blend-mode: lighten;
    background-size: cover;
}
</style>
<i class="icon"></i>

illustrate:

Lighten blending mode: Lighten, lighten mode has the opposite effect of darken mode. Black is darker than any color, so black will be replaced by any color. Conversely, if the background color of the material is black, the main color is white. Then you should use the darken blending mode.

Linear-gradient(#f00, #00f) can also achieve the effect of gradient color.

Summarize:

Method 1 is limited to images in png format, while method 2 has no restrictions on the image format.

CSS3 has certain compatibility. Chrome, Firefox and mobile terminals are more suitable for use.

This concludes this article about various ways to modify background image color using CSS3. For more information on modifying background image color using CSS3, please search previous articles on 123WORDPRESS.COM or continue browsing the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Summary of MySQL composite indexes

>>:  Analysis of two usages of the a tag in HTML post request

Recommend

Explanation of the problem of selecting MySQL storage time type

The datetime type is usually used to store time i...

Vue implements dynamic routing details

Table of contents 1. Front-end control 1. In the ...

A brief discussion on VUE uni-app custom components

1. Parent components can pass data to child compo...

How to use vw+rem for mobile layout

Are you still using rem flexible layout? Does it ...

Example of how to configure nginx to implement SSL

Environmental Description Server system: Ubuntu 1...

Docker connection mongodb implementation process and code examples

After the container is started Log in to admin fi...

Centos 7 64-bit desktop version installation graphic tutorial

If you think the system is slow and want to chang...

Some "pitfalls" of MySQL database upgrade

For commercial databases, database upgrade is a h...

WeChat applet canvas implements signature function

In the WeChat applet project, the development mod...

Common commands for mysql authorization, startup, and service startup

1. Four startup methods: 1.mysqld Start mysql ser...

How to use TypeScript in Vue

introduction In recent years, the call for TypeSc...

Summary of ten Linux command aliases that can improve efficiency

Preface Engineers working in the Linux environmen...

vue element el-transfer adds drag function

The Core Asset Management Project requires el-tra...

TypeScript namespace merging explained

Table of contents Merge namespaces with the same ...