CSS realizes the mask effect when the mouse moves to the image

CSS realizes the mask effect when the mouse moves to the image

1. Put the mask layer HTML code and the picture in a div

I put it in .img_div.

<div class="img_div">
    <img src="./images/paella-dish.jpg">
 
        <a href="#">
            <div class="mask">
               <h3>A Picture of food</h3>
                </div>
        </a>
</div>

2. Add styles to images and mask layers

Image: relative

Mask layer: absolute

Make the two styles overlap.

When the mouse is not on the image, the mask layer does not display .mask { opacity: 0; } .

.img_div {
    margin: 20px 400px 0 400px;
    position: relative;
    width: 531px;
    height: 354px;
}
.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 531px;
    height: 354px;
    background: rgba(101, 101, 101, 0.6);
    color: #ffffff;
    opacity: 0;
}
.mask h3 {
    text-align: center;
}

3. Use hover

Change the transparency to make the mask layer show through.

.img_div a:hover .mask {
    opacity: 1;           
}

Effect picture:

Summarize

The above is the CSS that I introduced to you to realize the mask layer effect when the mouse moves to the image. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  A detailed introduction to for/of, for/in in JavaScript

>>:  HTML Self-study Journey (I) Basic Elements and Attributes Practice (Write Your Own Code)

Recommend

Nginx reverse proxy configuration to remove prefix case tutorial

When using nginx as a reverse proxy, you can simp...

How to change MySQL character set utf8 to utf8mb4

For MySQL 5.5, if the character set is not set, t...

VMware Workstation Pro installs Win10 pure version operating system

This article describes the steps to install the p...

Sample code for implementing Google third-party login in Vue

Table of contents 1. Developer Platform Configura...

CSS to achieve scrolling image bar example code

On some websites, you can often see some pictures...

JavaScript to implement the function of changing avatar

This article shares the specific code of JavaScri...

Let's talk about MySQL joint query in detail

Table of contents Union query 1. Query the ID and...

How to use React to implement image recognition app

Let me show you the effect picture first. Persona...

Detailed example of MySQL (5.6 and below) parsing JSON

MySQL (5.6 and below) parses json #json parsing f...

Example of how to install nginx to a specified directory

Due to company requirements, two nginx servers in...

Detailed explanation of mysql download and installation process

1: Download MySql Official website download addre...