我用这段代码模糊了一些图像
img {
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
}
图像的边缘也变得模糊。是否可以在保持边缘定义的同时模糊图像?像嵌入模糊之类的?
我用这段代码模糊了一些图像
img {
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
}
图像的边缘也变得模糊。是否可以在保持边缘定义的同时模糊图像?像嵌入模糊之类的?
您可以将其放入<div>
withoverflow: hidden;
并将其设置<img>
为margin: -5px -10px -10px -5px;
。
img {
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
margin: -5px -10px -10px -5px;
}
div {
overflow: hidden;
}
<div><img src="http://placekitten.com/300" /></div>
我能够使用
transform: scale(1.03);
应用于图像的属性。由于某种原因,在 Chrome 上,如果存在任何相对定位的父元素,则提供的其他解决方案将不起作用。
检查http://jsfiddle.net/ud5ya7jt/
这样,图像将略微放大 3% 并且边缘将被裁剪,这在模糊图像上应该不是问题。它在我的情况下效果很好,因为我使用高分辨率图像作为背景。祝你好运!
我-webkit-transform: translate3d(0, 0, 0);
与overflow:hidden;
.
DOM:
<div class="parent">
<img class="child" src="http://placekitten.com/100" />
</div>
CSS:
.parent {
width: 100px;
height: 100px;
overflow: hidden;
-webkit-transform: translate3d(0, 0, 0);
}
.child {
-webkit-filter: blur(10px);
}
演示:http: //jsfiddle.net/DA5L4/18/
该技术适用于 Chrome34 和 iOS7.1
如果您使用最新版本的 Chrome,则无需使用-webkit-transform: translate3d(0, 0, 0);
hack。但它不适用于 Safari(webkit)。
你也可以保留整个视频,你不必剪掉一些东西。
您可以在白色模糊的边缘上叠加嵌入阴影。
这看起来也很好:)
只需将此代码粘贴到您的视频的父级:
.parent {
-webkit-box-shadow: inset 0 0 200px #000000;
-moz-box-shadow: inset 0 0 200px #000000;
box-shadow: inset 0 0 200px #000000;
}
在 IMG 可以设置为position:absolute的许多情况下,您可以使用clip来隐藏模糊的边缘 - 而外部 DIV 是不必要的。
img {
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
position: absolute;
clip: rect(5px,295px,295px;5px);
}
今天我自己解决了同样的问题,我想提出一个(目前)适用于主要浏览器的解决方案。此页面上的其他一些答案确实有效,但最近的更新,无论是浏览器还是操作系统,都使大多数/所有这些答案无效。
关键是将图像放置在容器中,并从其溢出:隐藏父容器中转换:缩放该容器。然后,模糊被应用到容器内的 img,而不是容器本身。
工作小提琴:https ://jsfiddle.net/x2c6txk2/
HTML
<div class="container">
<div class="img-holder">
<img src="https://unsplash.it/500/300/?random">
</div>
</div>
CSS
.container {
width : 90%;
height : 400px;
margin : 50px 5%;
overflow : hidden;
position : relative;
}
.img-holder {
position : absolute;
left : 0;
top : 0;
bottom : 0;
right : 0;
transform : scale(1.2, 1.2);
}
.img-holder img {
width : 100%;
height : 100%;
-webkit-filter : blur(15px);
-moz-filter : blur(15px);
filter : blur(15px);
}
只是对已接受答案的一些提示,如果您使用绝对位置,负边距将不起作用,但您仍然可以将顶部、底部、左侧和右侧设置为负值,并使父元素溢出隐藏。
如果您不知道图像大小,则有关将剪辑添加到位置绝对图像的答案有问题。
将图像插入到一个 withposition: relative;
和overflow: hidden;
HTML
<div><img src="#"></div>
CSS
div {
position: relative;
overflow: hidden;
}
img {
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
}
这也适用于可变大小的元素,例如动态 div。
改用backdrop-filter
!它像模糊一样filter
但没有任何边缘,并且没有任何妥协,例如调整图像大小或缩放图像。
.blurred::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
backdrop-filter: blur(10px); /* apply the blur */
pointer-events: none; /* make the overlay click-through */
}
.blurred {
position: relative;
width: 500px;
height: 300px;
background: no-repeat center center;
background-image: url('https://besthqwallpapers.com/Uploads/26-5-2019/94041/thumb2-tesla-model-x-2019-exterior-front-view-new-gray-model-x.jpg');
background-size: cover;
}
<div class="blurred"></div>
请记住,这在 IE 中不受支持,并且仅在显式启用时才在 firefox 中有效。
您可以通过裁剪图像并应用将模糊效果设置为 0 像素的包装元素来阻止图像重叠其边缘。这是它的样子:
HTML
<div id="wrapper">
<div id="image"></div>
</div>
CSS
#wrapper {
width: 1024px;
height: 768px;
border: 1px solid black;
// 'blur(0px)' will prevent the wrapped image
// from overlapping the border
-webkit-filter: blur(0px);
-moz-filter: blur(0px);
-ms-filter: blur(0px);
filter: blur(0px);
}
#wrapper #image {
width: 1024px;
height: 768px;
background-image: url("../images/cats.jpg");
background-size: cover;
-webkit-filter: blur(10px);
-moz-filter: blur(10px);
-ms-filter: blur(10px);
filter: blur(10px);
// Position 'absolute' is needed for clipping
position: absolute;
clip: rect(0px, 1024px, 768px, 0px);
}
最简单的方法是在包含图像的 div 中添加一个透明边框,并将其 display 属性设置为 inline-block,如下所示:
div{
margin: 2rem;
height: 100vh;
overflow: hidden;
display: inline-block;
border: 1px solid #00000000;
}
img {
-webkit-filter: blur(2rem);
filter: blur(2rem);
}
<div><img src='https://images.unsplash.com/photo-1557853197-aefb550b6fdc?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=375&q=80' /></div>
这是一个描述相同的代码笔: https ://codepen.io/arnavozil/pen/ExPYKNZ
如果您使用背景图片,我发现最好的方法是:
filter: blur(5px);
margin-top: -5px;
padding-bottom: 10px;
margin-left: -5px;
padding-right: 10px;
您可以尝试在其他元素上添加边框:
DOM:
<div><img src="#" /></div>
CSS:
div {
border: 1px solid black;
}
img {
filter: blur(5px);
}
我发现,就我而言,我不必添加包装器。
我刚刚添加了 -
margin: -1px;
或者
margin: 1px; // any non-zero margin
overflow: hidden;
我的模糊元素是绝对定位的。
这是我提出的一个解决方案,可以保持 100% 的图像并且不需要裁剪:
基本上,我将图像平铺在 3x3 网格中,然后模糊所有内容,然后放大中心图像,在模糊后效果时有效地创建重复边缘,这有点奇怪,css3 没有内置的重复边缘。
链接到方法/代码: 如何使用 CSS3 模糊图像而不裁剪或褪色边缘?