『毛玻璃』一样的视觉效果
在线生成工具
点击进入:https://www.fly63.com/tool/glassmorphism/
源码
<div class="box">
<div class="card">
<h1>Blurred Background</h1>
<p>『毛玻璃』一样的视觉效果</p>
</div>
</div>
<style>
.box{
background-image: url('https://picsum.photos/id/230/1920/350');
background-position: center;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 350px;
}
.card{
width: 50%;
height: 250px;
padding: 30px;
box-sizing: border-box;
backdrop-filter: blur(15px) saturate(180%);
-webkit-backdrop-filter: blur(15px) saturate(180%);
background-color: RGB(255,255,255,0.4);
border-radius: 10px;
border: 1px solid rgba(209, 213, 219, 0.3);
}
.card *{
color: black;
text-shadow: 0 1px 1px rgb(255 255 255 / 20%);
}
</style>