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

How to install Jenkins on CentOS 8

To install Jenkins on CentOS 8, you need to use t...

Chinese website user experience rankings

<br />User experience is increasingly valued...

Summary of the use of vue Watch and Computed

Table of contents 01. Listener watch (1) Function...

MySQL view principles and basic operation examples

This article uses examples to illustrate the prin...

Some common mistakes with MySQL null

According to null-values, the value of null in My...

A Brief Analysis of Patroni in Docker Containers

Table of contents Create an image File Structure ...

Detailed explanation of MySQL index principles and optimization

Preface This article was written by a big shot fr...

Sample code for installing Jenkins using Docker

Two problems that are easy to encounter when inst...

Use Typescript configuration steps in Vue

Table of contents 1. TypeScript is introduced int...

CocosCreator ScrollView optimization series: frame loading

Table of contents 1. Introduction 2. Analysis of ...

Implementation of JavaScript downloading linked images and uploading them

Since we are going to upload pictures, the first ...

Practical record of handling MySQL automatic shutdown problems

I recently helped someone with a project and the ...