Sample code for changing the color of a png image through a CSS3 filter

Sample code for changing the color of a png image through a CSS3 filter

This method uses the drop-shadow filter in CSS3 to generate a projection of any color on the non-transparent part of the png image, and then hides the original image, thereby achieving the purpose of changing the color of the image. See the effect first

Example images

Next is the code

<p><strong>Original Icon</strong></p>
<i class="icon icon-del"></i>
<p><strong>Icons that can change color</strong></p>
<i class="icon"><i class="icon icon-del"></i></i>

.icon {
    display: inline-block;
    width: 20px; height: 20px;
    overflow: hidden;
}
.icon-del {
    background: url(delete.png) no-repeat center;
}
.icon > .icon {
    position: relative;
    left: -20px;
    border-right: 20px solid transparent;
    -webkit-filter: drop-shadow(#0033FF 20px 0);
    filter: drop-shadow(#0033FF 20px 0);
}

Note that one of the key points

border-right: 20px solid transparent;

In Chrome, if the main body of an element is not visible on the page in any way, its drop-shadow is invisible; if the main body is visible even by 1 pixel, the drop-shadow is completely visible.

Since we used overflow:hidden to hide the original icon, its projection cannot be displayed normally on the Chrome browser. We solve this problem by adding a transparent border.

Summarize

This is the end of this article about changing the color of PNG images through CSS3 filter. For more relevant content about changing the color of PNG images with CSS, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  HTML background color gradient achieved through CSS

>>:  Vue implements bottom query function

Recommend

How to quickly build ELK based on Docker

[Abstract] This article quickly builds a complete...

Mac installation mysqlclient process analysis

Try installing via pip in a virtual environment: ...

A permanent solution to MYSQL's inability to recognize Chinese

In most cases, MySQL does not support Chinese whe...

Share 10 of the latest web front-end frameworks (translation)

In the world of web development, frameworks are ve...

Implementation of CentOS8.0 network configuration

1. Differences in network configuration between C...

How is MySQL transaction isolation achieved?

Table of contents Concurrent scenarios Write-Writ...

JavaScript to filter arrays

This article example shares the specific code for...

Detailed explanation of the 14 common HTTP status codes returned by the server

HTTP Status Codes The status code is composed of ...

Solution to the problem of invalid width setting for label and span

By default, setting width for label and span is in...

A brief discussion on the use and analysis of nofollow tags

Controversy over nofollow There was a dispute bet...

Writing a shell script in Ubuntu to start automatically at boot (recommended)

The purpose of writing scripts is to avoid having...

Writing High-Quality Code Web Front-End Development Practice Book Excerpts

(P4) Web standards are composed of a series of sta...

Implementation of multi-port mapping of nginx reverse proxy

Code Explanation 1.1 http:www.baidu.test.com defa...