正如你可以在我的代码片段中运行时,我有一个盒子,在下面我有一种阴影,如果我将鼠标悬停在盒子上,它会变慢。
.container{
min-height: 400px;
overflow: auto;
clear: both;
background: red;
}
.content {
max-width: 100%;
width: 441px;
float: left;
text-align: center;
position: relative;
z-index: 2;
}
.content:after {
content: '';
position: absolute;
bottom: -10px;
left: 7px;
right: 0;
margin: 0 auto;
width: 228px;
height: 48px;
border-radius: 50%;
background: #000;
opacity: 0.5;
-webkit-filter: blur(25px);
-o-filter: blur(25px);
-webkit-transform: scale(1, 0.3);
-o-transform: scale(1, 0.3);
}
.content:hover:after {
width: 350px;
height: 80px;
transition: all .8s;
-webkit-transition: all .8s;
-o-transition: all .8s;
-moz-transition: all .8s;
}

<div class="container">
<div class="content">
<h3>Find Your</h3>
<div class="main_content">
<h3>Nearest</h3>
<p>Fryking</p>
</div>
</div>
</div>
&#13;
如何在所有浏览器上实现此功能? 目前我只在chrome和firefox上看到它。当我进入IE和Safari时,我的代码不起作用。
这就是它在chrome上的表现:
以及它在safari和IE上的外观:
希望你能帮忙
答案 0 :(得分:0)
在MDN网站上,它说IE目前不支持过滤CSS属性,不幸的是我无法找到解决这个问题的方法。 MDN css filter
但是有两种选择
使用具有圆形渐变的透明度(如.png)的图片。您需要在某些软件(如Adobe Photoshop)中创建它或在线查找。 然后你可以在CSS中将它用作背景图像。
在CSS中使用径向渐变作为背景。 (有很多网站可以生成它) 应该适用于:
背景:径向渐变(rgba(0,0,0,1),rgba(0,0,0,0))
(需要-o- -moz- -webkit-以获得不同浏览器的支持)
最后设置背景大小:100%100%