如何使用CSS创建磨砂玻璃效果?

编程入门 行业动态 更新时间:2024-10-19 02:23:48
本文介绍了如何使用CSS创建磨砂玻璃效果?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我想创建一个固定在一个位置并使其透明的 div ,使其后面的内容部分可见和模糊。我正在寻找的样式类似于。 Firefox似乎获得了v35 +的功能,而即使IE11似乎没有任何兼容性。

SVG

另一种方法是使用svg(基本上是IE9及更高版本):

filter:url(blur.svg#blur);

SVG:

code>< svg version =1.1xmlns =www.w3/2000/svg> < filter id =blur> < feGaussianBlur stdDeviation =3/> < / filter> < / svg>

jsFiddle演示

Javascript

您将获得与JavaScript最高的浏览器兼容性,但通常是您的js的最慢的性能和增加的复杂性。

  • www.blurjs/ (jquery插件, canvas解决方案,因此IE9 +,FF,Chrome支持)
  • nbartlomiej.github.io/foggy/ (jquery插件IE8 +,FF,Chrome支持)

I'd like to create a div that is fixed in one position and make it translucent - making the contents behind it partially visible and blurred. The style I'm looking for is similar to the div of the 'See All' thumbnails in the Apple website.

The only thing I can do is adjust opacity: 0.9 but I cannot blur the contents that go under the div.

Note: The div has a fixed position and the background scrolls. The background that scolls is a mix of text and photos.

解决方案

CSS

CSS 3 has a blur filter (only webkit at the moment Nov 2014):

-webkit-filter: blur(3px); /*chrome (android), safari (ios), opera*/

IE 4-9 supports a non-standard filter

filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='3')

See some nice demo for the blur and other filters here.

For future reference here is the compatibility table for CSS filter. Firefox seems to be getting the feature in v35+ while even IE11 does not seem to have any compatibility.

SVG

An alternative is using svg (safe for basically IE9 and up):

filter: url(blur.svg#blur);

SVG:

<svg version="1.1" xmlns="www.w3/2000/svg"> <filter id="blur"> <feGaussianBlur stdDeviation="3" /> </filter> </svg>

jsFiddle Demo

Javascript

You will achieve the highest browser compatibility with javascript, but usually the slowest performance and added complexity to your js.

  • www.blurjs/ (jquery plugin, canvas solution so IE9+, FF, Chrome support)
  • nbartlomiej.github.io/foggy/ (jquery plugin IE8+, FF,Chrome support)

更多推荐

如何使用CSS创建磨砂玻璃效果?

本文发布于:2023-11-12 04:02:02,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1580465.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:磨砂玻璃   如何使用   效果   CSS

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!