首页 前端知识 前端背景图片模糊较好的办法

前端背景图片模糊较好的办法

2024-01-25 11:01:05 前端知识 前端哥 900 453 我要收藏

效果:解决了filter模糊和添加伪元素会模糊文字以及糊边的痛点 

代码都贴过来了,但关键代码只有一行:backdrop-filter: blur(5px)

其思想就是在背景图片的盒子下一级放一个同样大小的盒子,相当于遮罩层

<style>
    * {
        margin: 0;
        padding: 0;
    }
    
    .demo {
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .photo_object {
        width: 80%;
        height: 80%;
        background: url(https://img1.baidu.com/it/u=3388724121,114678878&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=281) center / cover no-repeat;
    }
    
    .vague {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* 关键代码 */
        backdrop-filter: blur(5px);
    }
    
    span {
        color: white;
        font-size: 50px;
    }
</style>

<body>
    <div class='demo'>
        <div class='photo_object'>
            <div class='vague'>
                <span>这是文字</span>
            </div>
        </div>
    </div>
</body>

效果如下: 

 注:并非纯自创,只为了记录个人开发过程中的一些方法及解决思路。

转载请注明出处或者链接地址:https://www.qianduange.cn//article/298.html
标签
css3
评论
发布的文章

Ajax学习(3rd)

2024-02-04 11:02:39

jQuery之事件触发器trigger()

2024-02-04 11:02:02

数据可视化一、ECharts

2024-02-04 11:02:45

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!