💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
使用`backdrop-filter`与`filter`都可以写出高斯模糊的效果,但是两者使用起来还是有区别的,而且使用的目标也不同。 **区别:** backdrop-filter:使背景模糊,不会影响到背景下面的图片 filter:通常是定义 img的可视效果,修改图片的模糊效果,值越大越模糊 我们这里实现毛玻璃效果就是使用了`backdrop-filter`属性。 效果图: ![](https://img.kancloud.cn/6d/77/6d77120bd0858d8778c3485d27d4e372_2058x484.png) ``` <div class="frosted-glass"> <h1 class="title">hello</h1> </div> ``` ``` body { display: flex; justify-content: center; align-items: center; height: 100vh; background: url(https://i.loli.net/2019/11/17/GAYyzeKsiWjP5qO.jpg); background-size: cover; background-position: center; } .frosted-glass { width: 72vw; height: 36vh; display: flex; justify-content: center; align-items: center; box-shadow: 0 0.3px 0.7px rgba(0, 0, 0, 0.126), 0 0.9px 1.7px rgba(0, 0, 0, 0.179), 0 1.8px 3.5px rgba(0, 0, 0, 0.224), 0 3.7px 7.3px rgba(0, 0, 0, 0.277), 0 10px 20px rgba(0, 0, 0, 0.4); backdrop-filter: blur(20px); } .title { font-size: 3.6em; font-weight: 200; color: white; } ```