Questions tagged «blur»


10
如何使CSS玻璃/模糊效果适用于覆盖层?
我在半透明的重叠div上应用模糊效果时遇到问题。我希望div后面的所有内容都模糊不清,如下所示: 这是一个不起作用的jsfiddle:http : //jsfiddle.net/u2y2091z/ 任何想法如何使这项工作?我想让它尽可能简单,并使其跨浏览器。这是我正在使用的CSS: #overlay { position: absolute; left: 0; top: 0; right: 0; bottom: 0; background:black; background:rgba(0,0,0,0.8); filter:blur(4px); -o-filter:blur(4px); -ms-filter:blur(4px); -moz-filter:blur(4px); -webkit-filter:blur(4px); }
101 html  css  blur  css-filters 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.