gpt4 book ai didi

设置转换属性后,CSS 模糊滤镜无法在边缘工作

转载 作者:太空宇宙 更新时间:2023-11-04 08:13:06 25 4
gpt4 key购买 nike

如标题所示,当设置了变换属性时,模糊滤镜在 Edge 中不起作用。下面的 fiddle 演示了这一点。

https://jsfiddle.net/wkjvwgyy/1/

#content-background {
display: block;
position: fixed;

top: 0;
left: 0;
height: 100%;
width: 100%;

background: url("https://i.imgur.com/qfGEt3o.jpg") no-repeat top center fixed;
background-size: cover;
filter: blur(5px) brightness(60%);
}
<div id="content-background" style="transform: scale(1.03)"></div>

删除变换属性后,模糊效果很好。它在 Chrome 和 Firefox 中也能正常工作。这是 Edge 中的错误吗?

两者都是transformsfilters应该在我正在运行的 Edge 15 上得到支持。

最佳答案

如果我没记错的话,这是 Edge 中的一个错误。

这应该有效:

#content-background {
display: block;
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: url("https://i.imgur.com/qfGEt3o.jpg") no-repeat top center fixed;
background-size: cover;
transform: scale(1.03)
}

#content-background::after {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: url("https://i.imgur.com/qfGEt3o.jpg") no-repeat top center fixed;
background-size: cover;
filter: blur(5px) brightness(60%);
}

关于设置转换属性后,CSS 模糊滤镜无法在边缘工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46111724/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com