是否可以用渐变遮罩 CSS 背景滤镜并隐藏溢出并设置边框半径?

Is it possible to have a CSS backdrop-filter be masked with a gradient and have overflow hidden and border-radius set?

提问人:Andy Fought 提问时间:10/17/2023 最后编辑:Andy Fought 更新时间:10/17/2023 访问量:40

问:

我正在努力弄清楚如何在 Chrome (v117.0.5938.92) 中使其工作。它在 Safari 和 Firefox 中按预期工作,但似乎 Chrome 无法处理它。如果有关于如何获取边界半径的其他解决方法,将不胜感激。从Codepen(https://codepen.io/andyfought/pen/GRPbgxe)中可以看出,它按预期工作,直到添加边框半径,然后它不尊重渐变蒙版。

我试图将图像包装在父容器中并将溢出和半径设置为该容器,但它似乎产生了同样的问题。我还尝试使用剪辑路径添加边框半径,但它在 Chrome 中创建了相同的结果。

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

img {
  display: block;
  width: 320px;
}

.image-blur {
  position: relative;
}

.image-blur::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  mask: linear-gradient(rgba(0, 0, 0, 0), black 90%);
}

.border-radius {
  border-radius: 2rem;
  overflow: hidden;
}
<figure class="card-image image-blur-contain">
  <div class="image-blur">
    <img src="https://unsplash.it/640/860" alt="Card Image">
  </div>
</figure>

<figure class="card-image image-blur-contain border-radius">
  <div class="image-blur">
    <img src="https://unsplash.it/640/860" alt="Card Image">
  </div>
</figure>

CSS 溢出 clip-path border-radius 背景

评论


答: 暂无答案