I have recently studied the hollowing effect. background-clip: text The background is clipped to the foreground color of the text. I first saw this usage on CSS-Tricks: On the CSS-Tricks website, this thing is used everywhere. In this way, it is no longer difficult to create a simple picture background hollowing effect. There are only a few lines of key code. .wrapper { /* ... */ background-image: url("/path/to/your/image"); background-clip: text; /* ! */ color: transparent; /* ! */ } Just these few lines will make a big visual change. Before and After Comparison: In addition, here is a more practical Demo than the above Since Straight to the point: CSS mask property This should be the most direct method that can be thought of. After all, the name contains the word “mask”, who can ignore it? The CSS First example Although it is a new property, setting the mask property is not difficult. Here is our first example. <div class="masked" /> .masked { height: 100px; width: 100px; background: linear-gradient(red, orange, yellow, lightgreen, blue, purple, red); mask: url("https://github.githubassets.com/pinned-octocat.svg"); } This is the effect below. The usage above is still very simple. We specify a mask-* big family mask-image mask-repeat mask-position mask-clip mask-origin mask-size - mask-type mask-composite mask-mode Is there a sense of déjà vu of .masked { height: /* ... */; width: /* ... */; background: /* ... */; mask-image: url(https://github.githubassets.com/pinned-octocat.svg); mask-size: 5em; mask-position: center; /* If you are in a good mood, it is okay to add an animation */ } Further control over masking effects Readers may have discovered that there are some new faces in mask-mode is used to specify the specific masking mode. The mask-type CSS property sets whether So, what is the mask value? The mask value indicates the degree to which the masked element is masked. The larger the mask value, the more the masked area will be revealed. When the mask value is the largest, the area will be completely opaque. For example: <div class="mode">ABCDEFG</div> .mode { height: 200px; width: 300px; /* and more */ mask-image: linear-gradient(to left, black, yellow); mask-mode: luminance; /* or alaph ? */ } The left side is the mask image, the middle is Generally, Specifies how to handle the mask effect when multiple mask images are superimposed. The effects of some property values depend on the order of the mask-image hierarchy. Try this CodePen from MDN That’s all about Blending Mode This should be the most magical method. When using PS, you often see the term "blending mode". I remember when I first used Photoshop many years ago, I was very curious about what "blending modes" were, which immediately filled me with awe for Photoshop. However, despite the awe we felt back then, the "hybrid model" mentioned here now is quite easy to understand. The so-called "blending mode" refers to the method of calculating the final color value of a pixel when layers overlap. Each blend mode receives a foreground color value and a background color value (top color and bottom color, respectively) as input, performs some calculations, and outputs the final color value to be displayed on the screen. The final visible color is the result of the blending mode calculation performed on each overlapping pixel in the layer. To put it simply, the blending mode determines what happens when you add one layer to another. In CSS, you can use You may ask, I don’t usually use anything like “blending mode”, so is the default value of Here we only discuss the blending mode used to achieve the hollowing effect - I believe you have already figured out what this has to do with hollowing out. Let’s take a look at an example. Now, we have a We add the following CSS to the floating frame: .logo { /* ... ... */ mix-blend-mode: screen; } It becomes the following: Go to this Demo to see the specific code and effects The gear icon has indeed become hollow. But why? Let’s make one thing clear first: put the floating layer above the video, the floating layer is the “foreground” and the video is the “background”. Let’s first look at the white part of the floating layer. Since placing white on top of any color will result in white, the white part is retained; and since placing black on top of any color will result in the color of the underlying layer, the black part appears hollowed out. However, this implementation is a bit of a hack, because only black and white are used here. If other colors are used as The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. |
<<: Set IE8 to use IE7 style code
>>: Basic usage of exists, in and any in MySQL
Table of contents 1. Database Overview 1.1 Develo...
Preface In the development of small programs, we ...
The specific code for using jQuery to implement t...
In some scenarios, we want to assign multiple IPs...
I encountered a little problem when configuring t...
Application nesting of unordered lists Copy code T...
NERDTree is a file system browser for Vim. With t...
Table of contents 1. Use the withRouter component...
Table of contents 1. Introduction 2. Installation...
The operating system for the following content is...
1: django-admin.py startproject project name 2: c...
According to data analysis company Net Market Sha...
1. Two words at the beginning Hello everyone, my ...
As a super rookie, I just started learning MySQL ...
MySQL Query Cache is on by default. To some exten...