提问人:rtk 提问时间:9/6/2023 最后编辑:rtk 更新时间:9/6/2023 访问量:51
使使用边框半径的图像模糊,导致边缘没有边框半径
Making an image using border-radius blurred causing the edges to not have border-radius
问:
我有一个具有 border-radius 属性的图像,我希望它在悬停在其上时模糊。但是当我将鼠标悬停在它上面时,模糊会应用,但 border-radius 属性不会应用。我该如何解决这个问题?
我尝试将 border-radius 添加到不同的类,但没有一个有效。
我不确定要共享什么代码。也许这可能会有所帮助。.entry-thumbnail 指的是图片帖子:
.entry-thumbnail {
position: relative;
.entry-thumbnail:after {
display: block;
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99;
opacity: 0;
transition: opacity 200ms linear;
}
}
}
a:hover .entry-thumbnail:after {
opacity: 1;
}
.secondary {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 101;
opacity: 0;
transition: opacity 200ms linear;
}
a:hover .secondary, a.hover .secondary {
opacity: 1;
}
我添加的是这样的:
img {
border-radius: 10px;
}
img:hover {
-webkit-filter: blur(4px); /* Chrome, Safari, Opera */
filter: blur(10px);
}
答:
2赞
MincedMeatMole
9/6/2023
#1
我认为你的模糊有点强,如果你想保持清晰的边框半径,你必须把它包裹在一个具有边框半径和overflow: hidden
.wrapper {
overflow: hidden;
border-radius: 20px;
width: 200px;
height: 200px;
}
img {
&:hover {
filter: blur(5px);
}
}
<div class="wrapper">
<img src="https://placehold.co/200x200" />
</div>
评论
0赞
rtk
9/6/2023
将“overflow: hidden”和边框半径添加到图像使用的类中解决了此问题。非常感谢您帮助菜鸟!
0赞
MincedMeatMole
9/6/2023
不用担心,我们都从某个地方开始^^ 如果答案解决了您的问题,请将答案标记为已接受
评论