Skip to content
css让容器背景模糊效果

加上以下css代码就好,容器背景模糊3px,容器内文字图片之类的其他元素保持不变

js
/* 滤镜容器,背景必须要有透明度 */
background: rgba(0, 0, 0, 0.25);  
/* 滤镜,参数是滤镜模糊强度 */
backdrop-filter: blur(5px);

示例代码:

html
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      * {
        padding: 0;
        margin: 0;
      }
    </style>
  </head>
  <body>
    <div style="position: fixed; top: 0; left: 0; width: 100vw; z-index: 1">
      <!-- 后面被模糊的文字 -->
      <p style="font-size: 30px">123456</p>
    </div>
    <div
      style="
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        width: 100vw;
        height: 200px;
        /* 滤镜容器,背景必须要有透明度 */
        background: rgba(0, 0, 0, 0.25);  
        /* 滤镜,参数是滤镜模糊强度 */
        backdrop-filter: blur(5px);
      "
    ></div>
  </body>
</html>