不要在意我的图片,主要是巩固显示隐藏

- html>
- <html lang="en">
-
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=`
- , initial-scale=1.0">
- <title>Documenttitle>
- <style>
- .tudou {
- position: relative;
- margin: 70px auto;
- width: 360px;
- height: 260px;
- background-color: hotpink;
- }
-
- .tudou img {
- width: 360px;
- height: 260px;
- }
-
- .mask {
- /*隐藏遮罩层*/
- display: none;
- position: absolute;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.6) url(./image/play.png) no-repeat center;
- }
-
- /*当我们鼠标经过tudou这个盒子,就让遮罩层出来*/
- .tudou:hover .mask {
- display: block;
- }
- style>
- head>
-
- <body>
- <div class="tudou">
- <div class="mask">div>
- <img src="./image/erji.png" alt="">
-
- div>
- body>
-
- html>