显示隐藏案例之李沁古装剧照

Posted 勇敢*牛牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示隐藏案例之李沁古装剧照相关的知识,希望对你有一定的参考价值。

当鼠标经过图片时,通过绝对定位与相对定位,以及盒子display,产生下图中的第二种选中效果


代码描述

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>显示影响</title>
    <style>
        .box {
            position: relative;
            width: 300px;
            height: 400px;
            margin: 0 auto;
        }

        .box img {
            width: inherit;
            height: inherit;
        }

        .box .box_1 {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: inherit;
            height: inherit;
            background: rgba(0, 0, 0, 0.4) url(images/arr.png) no-repeat center;
        }

        .box:hover .box_1 {
            cursor: pointer;
            display: block;
        }
    </style>
</head>

<body>
    <div class="box">
        <img src="images/网图.jpeg" alt="">
        <div class="box_1"></div>
    </div>
</body>

</html>

代码思路详解:

思路解析

  • 里面的紫色盒子为照片,一定要占满整个box,浅蓝色就是绝对定位的盒子,大小也和box一致,box为相对定位。
  • 给绝对定位的盒子添加top值和left值,就会产生浮动显示在相对盒子的顶层,不占位置。
  • 然后对此盒子背景浅色处理就行,在通过display显示效果

以上是关于显示隐藏案例之李沁古装剧照的主要内容,如果未能解决你的问题,请参考以下文章

在android中显示隐藏片段

仅在一个片段中隐藏状态栏并在其他片段中显示

显示/隐藏片段而不是替换

Android 片段隐藏显示 OnHide/OnShow?

隐藏/显示不同片段的操作栏选项菜单项

在Android Studio片段之间切换时地图片段不隐藏