其他分享
首页 > 其他分享> > 在vue中通过伪类添加模糊消除对子元素的影响,动态背景图片

在vue中通过伪类添加模糊消除对子元素的影响,动态背景图片

作者:互联网

<!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>Document</title>
    <style>
        .img {
            width: 500px;
            height: 500px;
            position: relative;
        }

        .img::before {
            content: "";
            left: 0;
            top: 0;
            position: absolute;
            width: 100%;
            height: 100%;
            /* 背景图片是固定的 */
            background: url("qq.jpg") no-repeat;
            /* 图片是动态的 */
            /* background: var(--bgImage); */
            background-size: 100% 100%;
            filter: blur(5px);
            z-index: -1;
        }

        .text {
            width: 200px;
            height: 200px;
            background-color: aqua;
            color: tomato;
            font-size: 20px;
            margin: 0 auto;

        }
    </style>
</head>

<body>
    <div class="img">
        <div class="text">
            我是子元素
        </div>
    </div>
    <!-- 如果背景图片是动态的就需要设置变量 -->
    <!-- 此写法适用于vue中 -->
    <!-- <div class="img" :style="{'--bgImage': `url('${图片路径}')`,}">
        <div class="text">
            我是子元素
        </div>
    </div> -->
</body>

</html>

标签:vue,伪类,color,100%,height,width,background,背景图片,size
来源: https://www.cnblogs.com/LiZiheng/p/16205508.html